Files
memecoin-botV2/.pnpm-store/v10/files/ac/c7ade561827f5040e346fd29d31f4e7def44c2791736094f93bcea325a44f0f7363f1fda985dac4f0591918828ce83effdce31379146ce1dc59944adc751b5

12 lines
419 B
Plaintext

"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;