/arkcompiler/ets_frontend/ts2panda/tests/expression/ |
D | functionExpression.test.ts | 74 if (pg.internalName === "UnitTest.test") { 92 if (pg.internalName === "UnitTest.a") { 96 if (pg.internalName === "UnitTest.func_main_0") { 120 if (pg.internalName === "UnitTest.a") { 124 if (pg.internalName === "UnitTest.func_main_0") { 149 if (pg.internalName === "UnitTest.a") { 153 if (pg.internalName === "UnitTest.func_main_0") { 186 if (pg.internalName === "UnitTest.p") { 191 if (pg.internalName === "UnitTest.func_main_0") { 292 if (pg.internalName === "UnitTest.a") { [all …]
|
D | propertyAccess.test.ts | 113 if (element.internalName === "func_main_0") { 120 if (element.internalName === "myMethod") { 155 if (element.internalName === "func_main_0") { 196 if (element.internalName === "func_main_0") {
|
/arkcompiler/ets_frontend/ts2panda/src/ |
D | compilerDriver.ts | 61 readonly internalName: string 120 let internalName = this.getFuncInternalName(decl, recorder); 122 new PendingCompilationUnit(decl, scope, internalName) 124 return internalName; 207 this.compileImpl(unit.decl, unit.scope, unit.internalName, recorder); 239 this.compileImpl(unit.decl, unit.scope, unit.internalName, recorder); 254 internalName: string, recorder: Recorder): void { 256 let pandaGen = new PandaGen(internalName, node, this.getParametersCount(node), scope); 299 this.compileUnitTestImpl(unit.decl, unit.scope, unit.internalName, recorder); 309 internalName: string, recorder: Recorder): void { [all …]
|
D | hoisting.ts | 74 …let internalName = compilerDriver.getFuncInternalName(<ts.FunctionLikeDeclaration>decl.node, compi… 78 …n.defineFunction(NodeKind.FIRST_NODE_OF_FUNCTION, <ts.FunctionDeclaration>decl.node, internalName); 82 …n.defineFunction(NodeKind.FIRST_NODE_OF_FUNCTION, <ts.FunctionDeclaration>decl.node, internalName);
|
D | compilerStatistics.ts | 244 let histogram = new HistogramStatistics(pg.internalName); 247 this.histogramMap.set(pg.internalName, histogram);
|
D | assemblyDumper.ts | 65 this.output += ".function any " + this.pg.internalName + "(";
|
D | pandagen.ts | 213 readonly internalName: string; property in PandaGen 235 constructor(internalName: string, node: ts.SourceFile | ts.FunctionLikeDeclaration, 237 this.internalName = internalName; 470 LOGE("function " + this.internalName + "() {");
|
D | compiler.ts | 1006 let internalName = this.compilerDriver.getFuncInternalName(expr, this.recorder); 1007 this.pandaGen.defineFunction(expr, expr, internalName); 1261 let internalName = this.compilerDriver.getFuncInternalName(expr, this.recorder); 1262 this.pandaGen.defineFunction(expr, expr, internalName);
|
D | ts2panda.ts | 370 let funcName = pg.internalName;
|
/arkcompiler/ets_frontend/es2panda/compiler/base/ |
D | hoisting.cpp | 70 const auto &internalName = scriptFunction->Scope()->InternalName(); in HoistFunction() local 73 pg->DefineFunction(decl->Node(), scriptFunction, internalName); in HoistFunction() 82 pg->DefineFunction(decl->Node(), scriptFunction, internalName); in HoistFunction()
|
/arkcompiler/ets_frontend/ts2panda/tests/statements/ |
D | functionDeclaration.test.ts | 146 if (element.internalName === "UnitTest.func_main_0") { 149 } else if (element.internalName === "UnitTest.test") {
|
/arkcompiler/ets_frontend/ts2panda/tests/utils/ |
D | base.ts | 181 return (pg.internalName === "UnitTest.func_main_0"); 265 return (pg.internalName === name);
|
/arkcompiler/ets_frontend/ts2panda/tests/watch_expression/ |
D | addWatch.test.ts | 338 if (pg.internalName === "#1#") { 514 if (pg.internalName === "func_main_0") { 642 if (pg.internalName === "a") { 847 if (pg.internalName === "func") { 878 if (pg.internalName === "#1#") { 909 if (pg.internalName === "func_main_0") {
|
/arkcompiler/ets_frontend/ts2panda/tests/ |
D | lexenv.test.ts | 375 if (pg.internalName === "UnitTest.func_main_0") { 377 } else if (pg.internalName === "UnitTest.func") { 413 if (pg.internalName === "UnitTest.func_main_0") { 417 } else if (pg.internalName === "UnitTest.func") {
|
/arkcompiler/ets_frontend/ts2panda/src/expression/ |
D | objectLiteralExpression.ts | 286 … let internalName = compiler.getCompilerDriver().getFuncInternalName(func, compiler.getRecorder()); 288 pandaGen.defineFunction(func, func, internalName); 290 pandaGen.defineMethod(func, internalName, objReg);
|
/arkcompiler/ets_frontend/es2panda/ir/base/ |
D | classDefinition.cpp | 196 const util::StringView &internalName = func->Function()->Scope()->InternalName(); in CreateClassStaticProperties() local 198 value = pg->Allocator()->New<TaggedLiteral>(LiteralTag::METHOD, internalName); in CreateClassStaticProperties()
|
/arkcompiler/ets_frontend/ts2panda/src/statement/ |
D | classStatement.ts | 268 …let internalName = compiler.getCompilerDriver().getInternalNameForCtor(stmt, <ts.ConstructorDeclar… 272 pandaGen.defineClassWithBuffer(stmt, internalName, litId, parameterLength, vregs[0]);
|
/arkcompiler/ets_frontend/es2panda/binder/ |
D | binder.cpp | 356 auto internalName = std::string(program_->FormatedRecordName()) + std::string(name); in BuildFunction() local 358 funcScope->BindName(name, util::UString(internalName, Allocator()).View()); in BuildFunction()
|
D | scope.h | 585 void BindName(util::StringView name, util::StringView internalName) in BindName() argument 588 internalName_ = internalName; in BindName()
|
/arkcompiler/ets_frontend/es2panda/parser/ |
D | parserImpl.h | 544 util::UString internalName(name, Allocator()); 545 return internalName.View();
|