Urara-Blog/node_modules/.pnpm-store/v3/files/ab/7efd174b35c80cbaac7704ac0f97ad00c2e9b2ef747ca6a436bafa7401d59541520775f7f371011c78a71db21812ce3bc8135425b7da4f4ae034ea0661076a
2022-08-14 01:14:53 +08:00

12 lines
No EOL
457 B
Text

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