Home
last modified time | relevance | path

Searched refs:ForUpdateStatement (Results 1 – 11 of 11) sorted by relevance

/arkcompiler/ets_frontend/es2panda/ir/statements/
DforUpdateStatement.cpp31 void ForUpdateStatement::Iterate(const NodeTraverser &cb) const in Iterate()
46 void ForUpdateStatement::Dump(ir::AstDumper *dumper) const in Dump()
55 void ForUpdateStatement::Compile(compiler::PandaGen *pg) const in Compile()
87 checker::Type *ForUpdateStatement::Check(checker::Checker *checker) const in Check()
109 void ForUpdateStatement::UpdateSelf(const NodeUpdater &cb, binder::Binder *binder) in UpdateSelf()
DforUpdateStatement.h38 class ForUpdateStatement : public LoopStatement {
40 …explicit ForUpdateStatement(binder::LoopScope *scope, AstNode *init, Expression *test, Expression … in ForUpdateStatement() function
/arkcompiler/ets_frontend/es2panda/test/parser/js/
Dtest-for-expected.txt5 "type": "ForUpdateStatement",
34 "type": "ForUpdateStatement",
64 "type": "ForUpdateStatement",
134 "type": "ForUpdateStatement",
232 "type": "ForUpdateStatement",
456 "type": "ForUpdateStatement",
663 "type": "ForUpdateStatement",
705 "type": "ForUpdateStatement",
747 "type": "ForUpdateStatement",
832 "type": "ForUpdateStatement",
[all …]
Dtest-const-replacement-expected.txt372 "type": "ForUpdateStatement",
/arkcompiler/ets_frontend/es2panda/binder/
Dbinder.h32 class ForUpdateStatement; variable
206 void BuildForUpdateLoop(ir::ForUpdateStatement *forUpdateStmt);
Dbinder.cpp580 void Binder::BuildForUpdateLoop(ir::ForUpdateStatement *forUpdateStmt) in BuildForUpdateLoop()
/arkcompiler/ets_frontend/es2panda/ir/
DastNodeMapping.h47 _(FOR_UPDATE_STATEMENT, ForUpdateStatement) \
/arkcompiler/ets_frontend/es2panda/test/parser/ts/transformed_cases/
Dtest-for-statement-2-transformed-expected.txt5 "type": "ForUpdateStatement",
Dtest-for-statement-1-transformed-expected.txt5 "type": "ForUpdateStatement",
/arkcompiler/ets_frontend/es2panda/typescript/
Dchecker.h77 class ForUpdateStatement; variable
/arkcompiler/ets_frontend/es2panda/parser/
DstatementParser.cpp1544 …forStatement = AllocNode<ir::ForUpdateStatement>(loopScope, initNode, rightNode, updateNode, bodyN… in ParseForStatement()