Files
memecoin-botV2/.pnpm-store/v10/files/b4/3c6540d11c08a63648cf53cd4a7b030a8aad7f0180dd5595de62cc3e59c0f90cf8f3c97e5c411397977e4a26b5f82af23e03796cf76c6867332d7ed3c2a26c

12 lines
414 B
Plaintext

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