Files
memecoin-botV2/.pnpm-store/v10/files/be/a757de71bc0c7ee62f59ddacd07d2521f1ec0be731ac017a8e706b0a2aa2d5669683cbfc7cf44cc2f58973258919d445e152d4ab73fadc8ca4137fe5dfa78d

12 lines
444 B
Plaintext

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