Home
last modified time | relevance | path

Searched refs:firstStmt (Results 1 – 4 of 4) sorted by relevance

/arkcompiler/ets_frontend/ts2panda/src/
Ddebuginfo.ts185 let firstStmt = pandaGen.getFirstStmt();
186 if (firstStmt) {
187 let res = this.searchForPos(firstStmt);
Dpandagen.ts226 private firstStmt: ts.Statement | undefined; property in PandaGen
401 return this.firstStmt;
404 setFirstStmt(firstStmt: ts.Statement): void {
405 if (this.firstStmt) {
408 this.firstStmt = firstStmt;
/arkcompiler/ets_frontend/es2panda/compiler/core/
Dpandagen.h74 const ir::Statement *firstStmt {};
487 debugInfo_.firstStmt = stmt; in SetFirstStmt()
/arkcompiler/ets_frontend/es2panda/compiler/core/emitter/
Demitter.cpp167 astNode = pg_->Debuginfo().firstStmt; in GenInstructionDebugInfo()