2022-02-16 11:20:17 +08:00

29 lines
818 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { IScope } from '../types/core';
import { IScopeBindings, ScopeBindings } from './ScopeBindings';
export class Scope implements IScope {
/**
* 创建根部 Scope根据需要被上溯的作用域链决定是否开启新的
*/
static createRootScope(): IScope {
return new Scope();
}
bindings?: IScopeBindings;
constructor(public readonly parent: IScope | null = null) {
this.bindings = undefined;
}
createSubScope(ownIdentifiers: string[]): IScope {
const originalScopeBindings = this.bindings;
const newScopeBindings = new ScopeBindings(originalScopeBindings);
ownIdentifiers.forEach((identifier) => {
newScopeBindings.addBinding(identifier);
});
const newScope = new Scope(this);
newScope.bindings = newScopeBindings;
return newScope;
}
}