Files
memecoin-botV2/.pnpm-store/v10/files/ae/1c82a25809efc6c46b97d57941b6aefd8e1c71aa5cc1b23977f88eae5dcc29d0c945ca9acd31f9ef5084cb8985bc6c0944a7b8ed25b3845461ff5fc8d345f0

12 lines
424 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ModuleScope = void 0;
const ScopeBase_1 = require("./ScopeBase");
const ScopeType_1 = require("./ScopeType");
class ModuleScope extends ScopeBase_1.ScopeBase {
constructor(scopeManager, upperScope, block) {
super(scopeManager, ScopeType_1.ScopeType.module, upperScope, block, false);
}
}
exports.ModuleScope = ModuleScope;