mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 13:09:29 +08:00
12 lines
No EOL
487 B
Text
12 lines
No EOL
487 B
Text
"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;
|
|
//# sourceMappingURL=MappedTypeScope.js.map |