Home
last modified time | relevance | path

Searched refs:findLocal (Results 1 – 12 of 12) sorted by relevance

/arkcompiler/ets_frontend/ts2panda/tests/statements/
DvariableDeclaration.test.ts61 let v = globalScope.findLocal("i");
77 let v = globalScope.findLocal("i");
93 let v = globalScope.findLocal("i");
111 let v = globalScope.findLocal("i");
127 let v = globalScope.findLocal("i");
136 let i = globalScope.findLocal("i");
138 let j = globalScope.findLocal("j");
147 let i = globalScope.findLocal("i");
149 let j = globalScope.findLocal("j");
158 let i = globalScope.findLocal("i");
[all …]
DfunctionDeclaration.test.ts59 let foo = globalScope!.findLocal(funcName);
79 let foo = globalScope!.findLocal("foo");
100 let foo = functionScope!.findLocal("foo");
/arkcompiler/ets_frontend/ts2panda/tests/expression/
DthisKeyWord.test.ts47 let thisVar = globalScope!.findLocal("this");
62 let thisVar = functionScope!.findLocal("this");
/arkcompiler/ets_frontend/ts2panda/src/
Dhoisting.ts60 let v: ModuleVariable = <ModuleVariable>(scope.findLocal(name)!);
81 let v: ModuleVariable = <ModuleVariable>(scope.findLocal(funcName)!);
DlexicalBinder.ts162 let v = scope.findLocal(name);
198 v = curScope.findLocal(MandatoryArguments);
DecmaModule.ts251 (<ModuleVariable>moduleScope.findLocal(localName)!).assignIndex(index++);
256 (<ModuleVariable>moduleScope.findLocal(localName)!).assignIndex(index++);
Dscope.ts188 findLocal(name: string): Variable | undefined { method in Scope
202 resolve = curScope.findLocal(name);
241 let result = curScope.findLocal(name);
DaddVariable2Scope.ts103 if (!scope.findLocal(MandatoryArguments)) {
Dcompiler.ts219 let v = this.scope.findLocal(arg);
737 … let defaultV: ModuleVariable = <ModuleVariable>(this.pandaGen.getScope().findLocal("*default*"));
Dpandagen.ts535 let v = this.scope!.findLocal(MandatoryArguments);
/arkcompiler/ets_frontend/ts2panda/tests/
Dlexenv.test.ts491 let outerA = outerScope!.findLocal("a");
492 let outerB = outerScope!.findLocal("b");
498 let anonymousA = anonymousScope!.findLocal("a");
505 let globalA = globalScope!.findLocal("a");
/arkcompiler/ets_frontend/ts2panda/src/statement/
DclassStatement.ts133 let v: ModuleVariable = <ModuleVariable>(pandaGen.getScope().findLocal(className));
137 … let defaultV: ModuleVariable = <ModuleVariable>(pandaGen.getScope().findLocal("*default*"));
151 … let v: ModuleVariable = <ModuleVariable>(pandaGen.getScope().findLocal(className));
422 let funcObj = <Variable>curFuncScope.findLocal(MandatoryFuncObj);