Home
last modified time | relevance | path

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

/arkcompiler/ets_frontend/es2panda/binder/
Dbinder.cpp747 auto *whileStatement = childNode->AsWhileStatement(); in ResolveReference() local
748 ResolveReference(whileStatement, whileStatement->Test()); in ResolveReference()
750 auto loopScopeCtx = LexicalScope<LoopScope>::Enter(this, whileStatement->Scope()); in ResolveReference()
751 ResolveReference(whileStatement, whileStatement->Body()); in ResolveReference()
/arkcompiler/ets_frontend/es2panda/
DCMakeLists.txt176 ir/statements/whileStatement.cpp
DBUILD.gn129 "ir/statements/whileStatement.cpp",
/arkcompiler/ets_frontend/es2panda/parser/
DstatementParser.cpp2139 …auto *whileStatement = AllocNode<ir::WhileStatement>(iterCtx.LexicalScope().GetScope(), test, body… in ParseWhileStatement() local
2140 whileStatement->SetRange({startLoc, endLoc}); in ParseWhileStatement()
2141 iterCtx.LexicalScope().GetScope()->BindNode(whileStatement); in ParseWhileStatement()
2143 return whileStatement; in ParseWhileStatement()