Urara-Blog/node_modules/.pnpm-store/v3/files/be/662b9f3c98e052bcd71eb141472efce920b603b1b43ea3c5018dee16726ce57aafd3dcbf1442b404b0b6369afe625ad4c01f297d7fd15e0ce77a974361d5cd
2022-08-14 01:14:53 +08:00

12 lines
No EOL
463 B
Text

"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;
//# sourceMappingURL=ModuleScope.js.map