Home
last modified time | relevance | path

Searched refs:internalName (Results 1 – 20 of 20) sorted by relevance

/arkcompiler/ets_frontend/ts2panda/tests/expression/
DfunctionExpression.test.ts74 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 …]
DpropertyAccess.test.ts113 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/
DcompilerDriver.ts61 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 …]
Dhoisting.ts74 …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);
DcompilerStatistics.ts244 let histogram = new HistogramStatistics(pg.internalName);
247 this.histogramMap.set(pg.internalName, histogram);
DassemblyDumper.ts65 this.output += ".function any " + this.pg.internalName + "(";
Dpandagen.ts213 readonly internalName: string; property in PandaGen
235 constructor(internalName: string, node: ts.SourceFile | ts.FunctionLikeDeclaration,
237 this.internalName = internalName;
470 LOGE("function " + this.internalName + "() {");
Dcompiler.ts1006 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);
Dts2panda.ts370 let funcName = pg.internalName;
/arkcompiler/ets_frontend/es2panda/compiler/base/
Dhoisting.cpp70 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/
DfunctionDeclaration.test.ts146 if (element.internalName === "UnitTest.func_main_0") {
149 } else if (element.internalName === "UnitTest.test") {
/arkcompiler/ets_frontend/ts2panda/tests/utils/
Dbase.ts181 return (pg.internalName === "UnitTest.func_main_0");
265 return (pg.internalName === name);
/arkcompiler/ets_frontend/ts2panda/tests/watch_expression/
DaddWatch.test.ts338 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/
Dlexenv.test.ts375 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/
DobjectLiteralExpression.ts286 … 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/
DclassDefinition.cpp196 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/
DclassStatement.ts268 …let internalName = compiler.getCompilerDriver().getInternalNameForCtor(stmt, <ts.ConstructorDeclar…
272 pandaGen.defineClassWithBuffer(stmt, internalName, litId, parameterLength, vregs[0]);
/arkcompiler/ets_frontend/es2panda/binder/
Dbinder.cpp356 auto internalName = std::string(program_->FormatedRecordName()) + std::string(name); in BuildFunction() local
358 funcScope->BindName(name, util::UString(internalName, Allocator()).View()); in BuildFunction()
Dscope.h585 void BindName(util::StringView name, util::StringView internalName) in BindName() argument
588 internalName_ = internalName; in BindName()
/arkcompiler/ets_frontend/es2panda/parser/
DparserImpl.h544 util::UString internalName(name, Allocator());
545 return internalName.View();