Urara-Blog/node_modules/.pnpm-store/v3/files/66/39a55245229995a4a5a6966d4bcb52c6a93fde71abafca267bf3b93e5a97ba99101d74934cdd4a28bc1e69b9e4ac38aa16669f3d1730a7d4dfd0cf7cdbc87b
2022-08-14 01:14:53 +08:00

12 lines
No EOL
499 B
Text

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