Home
last modified time | relevance | path

Searched refs:getScopeOfNode (Results 1 – 11 of 11) sorted by relevance

/arkcompiler/ets_frontend/ts2panda/src/statement/
DloopStatement.ts39 let loopScope = <LoopScope>compiler.getRecorder().getScopeOfNode(stmt);
79 let loopScope = <LoopScope>compiler.getRecorder().getScopeOfNode(stmt);
117 let loopScope = <LoopScope>compiler.getRecorder().getScopeOfNode(stmt);
255 let loopScope = <LoopScope>compiler.getRecorder().getScopeOfNode(stmt);
DtryStatement.ts35 let tryStmtScope = <LocalScope>recorder.getScopeOfNode(tryStmt);
38 (<LocalScope>recorder.getScopeOfNode(tryStmt.tryBlock)).setParent(newTryStmtScope);
39 (<LocalScope>recorder.getScopeOfNode(tryStmt.catchClause!)).setParent(newTryStmtScope);
283 let loopScope = <LoopScope>compiler.getRecorder().getScopeOfNode(stmt);
DforOfStatement.ts66 let loopScope = <LoopScope>compiler.getRecorder().getScopeOfNode(stmt);
DclassStatement.ts129 let classScope = <Scope>compiler.getRecorder().getScopeOfNode(stmt);
186 let parentScope = <LocalScope>recorder.getScopeOfNode(classNode);
407 let curFuncScope = <FunctionScope>recorder.getScopeOfNode(nearestFunc);
/arkcompiler/ets_frontend/ts2panda/src/
DlexicalBinder.ts45 this.resolveIdentReference(this.srcFile, this.recorder.getScopeOfNode(this.srcFile));
50 let tmp = this.recorder.getScopeOfNode(child);
DaddVariable2Scope.ts158 let functionScope = <Scope>recorder.getScopeOfNode(funcNode);
168 let classScope = <Scope>recorder.getScopeOfNode(classNode);
Dhoisting.ts38 let variableScope = <VariableScope>recorder.getScopeOfNode(rootNode);
Drecorder.ts698 (<FunctionScope>this.getScopeOfNode(node)).setFuncName(name);
735 (<FunctionScope>this.getScopeOfNode(node)).setParameterLength(length);
795 getScopeOfNode(node: ts.Node): Scope { method in Recorder
Dcompiler.ts190 let functionScope = this.recorder.getScopeOfNode(rootNode);
212 let rootScope: VariableScope = <VariableScope>this.recorder.getScopeOfNode(rootNode);
697 let loopScope = <LoopScope>this.getRecorder().getScopeOfNode(node);
1352 let scope = <Scope>this.recorder.getScopeOfNode(node);
DcompilerDriver.ts410 name = (<FunctionScope>recorder.getScopeOfNode(funcNode)).getFuncName();
/arkcompiler/ets_frontend/arkguard/src/utils/
DScopeAnalyzer.ts324 getScopeOfNode(node: Node): Scope | undefined; method
340 getScopeOfNode,
860 function getScopeOfNode(node: Node): Scope | undefined {