blob: cd27683ed8c56192b23ded07deb1f1528177980e [file] [log] [blame]
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.ForScope = void 0;
const ScopeBase_1 = require("./ScopeBase");
const ScopeType_1 = require("./ScopeType");
class ForScope extends ScopeBase_1.ScopeBase {
constructor(scopeManager, upperScope, block) {
super(scopeManager, ScopeType_1.ScopeType.for, upperScope, block, false);
}
}
exports.ForScope = ForScope;
//# sourceMappingURL=ForScope.js.map