Urara-Blog/node_modules/.pnpm-store/v3/files/09/6ec44e9d0e9a147784a3f435734f45e14a833648caf4663333f6d852dc18d6d5e9b3d63ab1c3123389a09a7310754bce0229d367ef96c19ccf8eb131788af9
2022-08-14 01:14:53 +08:00

12 lines
No EOL
457 B
Text

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