mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-04 21:59:29 +08:00
183 lines
No EOL
8.1 KiB
Text
183 lines
No EOL
8.1 KiB
Text
"use strict";
|
|
var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, state, value, kind, f) {
|
|
if (kind === "m") throw new TypeError("Private method is not writable");
|
|
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
|
|
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
|
return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
|
|
};
|
|
var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, state, kind, f) {
|
|
if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
|
|
if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
|
return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
|
|
};
|
|
var _ScopeManager_options;
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.ScopeManager = void 0;
|
|
const assert_1 = require("./assert");
|
|
const scope_1 = require("./scope");
|
|
const ClassFieldInitializerScope_1 = require("./scope/ClassFieldInitializerScope");
|
|
const ClassStaticBlockScope_1 = require("./scope/ClassStaticBlockScope");
|
|
class ScopeManager {
|
|
constructor(options) {
|
|
_ScopeManager_options.set(this, void 0);
|
|
this.scopes = [];
|
|
this.globalScope = null;
|
|
this.nodeToScope = new WeakMap();
|
|
this.currentScope = null;
|
|
__classPrivateFieldSet(this, _ScopeManager_options, options, "f");
|
|
this.declaredVariables = new WeakMap();
|
|
}
|
|
get variables() {
|
|
const variables = new Set();
|
|
function recurse(scope) {
|
|
scope.variables.forEach(v => variables.add(v));
|
|
scope.childScopes.forEach(recurse);
|
|
}
|
|
this.scopes.forEach(recurse);
|
|
return Array.from(variables).sort((a, b) => a.$id - b.$id);
|
|
}
|
|
isGlobalReturn() {
|
|
return __classPrivateFieldGet(this, _ScopeManager_options, "f").globalReturn === true;
|
|
}
|
|
isModule() {
|
|
return __classPrivateFieldGet(this, _ScopeManager_options, "f").sourceType === 'module';
|
|
}
|
|
isImpliedStrict() {
|
|
return __classPrivateFieldGet(this, _ScopeManager_options, "f").impliedStrict === true;
|
|
}
|
|
isStrictModeSupported() {
|
|
return __classPrivateFieldGet(this, _ScopeManager_options, "f").ecmaVersion != null && __classPrivateFieldGet(this, _ScopeManager_options, "f").ecmaVersion >= 5;
|
|
}
|
|
isES6() {
|
|
return __classPrivateFieldGet(this, _ScopeManager_options, "f").ecmaVersion != null && __classPrivateFieldGet(this, _ScopeManager_options, "f").ecmaVersion >= 6;
|
|
}
|
|
/**
|
|
* Get the variables that a given AST node defines. The gotten variables' `def[].node`/`def[].parent` property is the node.
|
|
* If the node does not define any variable, this returns an empty array.
|
|
* @param node An AST node to get their variables.
|
|
* @public
|
|
*/
|
|
getDeclaredVariables(node) {
|
|
var _a;
|
|
return (_a = this.declaredVariables.get(node)) !== null && _a !== void 0 ? _a : [];
|
|
}
|
|
/**
|
|
* Get the scope of a given AST node. The gotten scope's `block` property is the node.
|
|
* This method never returns `function-expression-name` scope. If the node does not have their scope, this returns `null`.
|
|
*
|
|
* @param node An AST node to get their scope.
|
|
* @param inner If the node has multiple scopes, this returns the outermost scope normally.
|
|
* If `inner` is `true` then this returns the innermost scope.
|
|
* @public
|
|
*/
|
|
acquire(node, inner = false) {
|
|
var _a;
|
|
function predicate(testScope) {
|
|
if (testScope.type === 'function' && testScope.functionExpressionScope) {
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
const scopes = this.nodeToScope.get(node);
|
|
if (!scopes || scopes.length === 0) {
|
|
return null;
|
|
}
|
|
// Heuristic selection from all scopes.
|
|
// If you would like to get all scopes, please use ScopeManager#acquireAll.
|
|
if (scopes.length === 1) {
|
|
return scopes[0];
|
|
}
|
|
if (inner) {
|
|
for (let i = scopes.length - 1; i >= 0; --i) {
|
|
const scope = scopes[i];
|
|
if (predicate(scope)) {
|
|
return scope;
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
return (_a = scopes.find(predicate)) !== null && _a !== void 0 ? _a : null;
|
|
}
|
|
nestScope(scope) {
|
|
if (scope instanceof scope_1.GlobalScope) {
|
|
(0, assert_1.assert)(this.currentScope === null);
|
|
this.globalScope = scope;
|
|
}
|
|
this.currentScope = scope;
|
|
return scope;
|
|
}
|
|
nestBlockScope(node) {
|
|
(0, assert_1.assert)(this.currentScope);
|
|
return this.nestScope(new scope_1.BlockScope(this, this.currentScope, node));
|
|
}
|
|
nestCatchScope(node) {
|
|
(0, assert_1.assert)(this.currentScope);
|
|
return this.nestScope(new scope_1.CatchScope(this, this.currentScope, node));
|
|
}
|
|
nestClassScope(node) {
|
|
(0, assert_1.assert)(this.currentScope);
|
|
return this.nestScope(new scope_1.ClassScope(this, this.currentScope, node));
|
|
}
|
|
nestClassFieldInitializerScope(node) {
|
|
(0, assert_1.assert)(this.currentScope);
|
|
return this.nestScope(new ClassFieldInitializerScope_1.ClassFieldInitializerScope(this, this.currentScope, node));
|
|
}
|
|
nestClassStaticBlockScope(node) {
|
|
(0, assert_1.assert)(this.currentScope);
|
|
return this.nestScope(new ClassStaticBlockScope_1.ClassStaticBlockScope(this, this.currentScope, node));
|
|
}
|
|
nestConditionalTypeScope(node) {
|
|
(0, assert_1.assert)(this.currentScope);
|
|
return this.nestScope(new scope_1.ConditionalTypeScope(this, this.currentScope, node));
|
|
}
|
|
nestForScope(node) {
|
|
(0, assert_1.assert)(this.currentScope);
|
|
return this.nestScope(new scope_1.ForScope(this, this.currentScope, node));
|
|
}
|
|
nestFunctionExpressionNameScope(node) {
|
|
(0, assert_1.assert)(this.currentScope);
|
|
return this.nestScope(new scope_1.FunctionExpressionNameScope(this, this.currentScope, node));
|
|
}
|
|
nestFunctionScope(node, isMethodDefinition) {
|
|
(0, assert_1.assert)(this.currentScope);
|
|
return this.nestScope(new scope_1.FunctionScope(this, this.currentScope, node, isMethodDefinition));
|
|
}
|
|
nestFunctionTypeScope(node) {
|
|
(0, assert_1.assert)(this.currentScope);
|
|
return this.nestScope(new scope_1.FunctionTypeScope(this, this.currentScope, node));
|
|
}
|
|
nestGlobalScope(node) {
|
|
return this.nestScope(new scope_1.GlobalScope(this, node));
|
|
}
|
|
nestMappedTypeScope(node) {
|
|
(0, assert_1.assert)(this.currentScope);
|
|
return this.nestScope(new scope_1.MappedTypeScope(this, this.currentScope, node));
|
|
}
|
|
nestModuleScope(node) {
|
|
(0, assert_1.assert)(this.currentScope);
|
|
return this.nestScope(new scope_1.ModuleScope(this, this.currentScope, node));
|
|
}
|
|
nestSwitchScope(node) {
|
|
(0, assert_1.assert)(this.currentScope);
|
|
return this.nestScope(new scope_1.SwitchScope(this, this.currentScope, node));
|
|
}
|
|
nestTSEnumScope(node) {
|
|
(0, assert_1.assert)(this.currentScope);
|
|
return this.nestScope(new scope_1.TSEnumScope(this, this.currentScope, node));
|
|
}
|
|
nestTSModuleScope(node) {
|
|
(0, assert_1.assert)(this.currentScope);
|
|
return this.nestScope(new scope_1.TSModuleScope(this, this.currentScope, node));
|
|
}
|
|
nestTypeScope(node) {
|
|
(0, assert_1.assert)(this.currentScope);
|
|
return this.nestScope(new scope_1.TypeScope(this, this.currentScope, node));
|
|
}
|
|
nestWithScope(node) {
|
|
(0, assert_1.assert)(this.currentScope);
|
|
return this.nestScope(new scope_1.WithScope(this, this.currentScope, node));
|
|
}
|
|
}
|
|
exports.ScopeManager = ScopeManager;
|
|
_ScopeManager_options = new WeakMap();
|
|
//# sourceMappingURL=ScopeManager.js.map |