Searched refs:ASTWhileStatement (Results 1 – 5 of 5) sorted by relevance
18 struct ASTWhileStatement : public ASTStatement { struct19 ASTWhileStatement(Position position, std::unique_ptr<ASTExpression> test, in ASTWhileStatement() function
43 struct ASTWhileStatement;144 std::unique_ptr<ASTWhileStatement> whileStatement();
165 std::unique_ptr<Statement> convertWhile(const ASTWhileStatement& w);
930 std::unique_ptr<ASTWhileStatement> Parser::whileStatement() { in whileStatement()949 return std::unique_ptr<ASTWhileStatement>(new ASTWhileStatement(start.fPosition, in whileStatement()
171 return this->convertWhile((ASTWhileStatement&) statement); in convertStatement()350 std::unique_ptr<Statement> IRGenerator::convertWhile(const ASTWhileStatement& w) { in convertWhile()