Home
last modified time | relevance | path

Searched refs:DoWhileStatement (Results 1 – 10 of 10) sorted by relevance

/arkcompiler/ets_frontend/es2panda/ir/statements/
DdoWhileStatement.cpp29 void DoWhileStatement::Iterate(const NodeTraverser &cb) const in Iterate()
35 void DoWhileStatement::Dump(ir::AstDumper *dumper) const in Dump()
40 void DoWhileStatement::Compile(compiler::PandaGen *pg) const in Compile()
58 checker::Type *DoWhileStatement::Check(checker::Checker *checker) const in Check()
69 void DoWhileStatement::UpdateSelf(const NodeUpdater &cb, binder::Binder *binder) in UpdateSelf()
DdoWhileStatement.h38 class DoWhileStatement : public LoopStatement {
40 explicit DoWhileStatement(binder::LoopScope *scope, Statement *body, Expression *test) in DoWhileStatement() function
/arkcompiler/ets_frontend/es2panda/test/parser/js/
Dtest-do-while-expected.txt5 "type": "DoWhileStatement",
115 "type": "DoWhileStatement",
225 "type": "DoWhileStatement",
350 "type": "DoWhileStatement",
475 "type": "DoWhileStatement",
557 "type": "DoWhileStatement",
598 "type": "DoWhileStatement",
Dtest-labelled-statement-expected.txt307 "type": "DoWhileStatement",
/arkcompiler/ets_frontend/es2panda/ir/
DastNodeMapping.h38 _(DO_WHILE_STATEMENT, DoWhileStatement) \
/arkcompiler/ets_frontend/es2panda/test/parser/ts/transformed_cases/
Dtest-while-statement-1-transformed-expected.txt350 "type": "DoWhileStatement",
Dtest-while-statement-2-transformed-expected.txt350 "type": "DoWhileStatement",
/arkcompiler/ets_frontend/es2panda/parser/
DparserImpl.h55 class DoWhileStatement; variable
487 ir::DoWhileStatement *ParseDoWhileStatement();
DstatementParser.cpp1075 ir::DoWhileStatement *ParserImpl::ParseDoWhileStatement() in ParseDoWhileStatement()
1100 …auto *doWhileStatement = AllocNode<ir::DoWhileStatement>(iterCtx.LexicalScope().GetScope(), body, … in ParseDoWhileStatement()
/arkcompiler/ets_frontend/es2panda/typescript/
Dchecker.h75 class DoWhileStatement; variable