Files
memecoin-botV2/.pnpm-store/v10/files/df/69fbe0f2ab000c348b41dcc7423746baea86c35658b6e8d44f81336109957637c0e53e50ff5e2a0f49b8beae4ab99c07d364c32ca7970b8b9b710eb8360d8c

12 lines
474 B
Plaintext

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