Files
memecoin-botV2/.pnpm-store/v10/files/63/b82cae933c43aaed18cef96541f12f42085b9d53d0919327cc0008f09b416437254f849a20c2e6e0e58194af6dbbeea28ad6a2e9d1ce9beada91b035855378

12 lines
424 B
Plaintext

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