Searched refs:ASTForStatement (Results 1 – 5 of 5) sorted by relevance
18 struct ASTForStatement : public ASTStatement { struct19 ASTForStatement(Position position, std::unique_ptr<ASTStatement> initializer, in ASTForStatement() function
33 struct ASTForStatement;163 std::unique_ptr<ASTForStatement> forStatement();
135 std::unique_ptr<Statement> convertFor(const ASTForStatement& f);
1160 std::unique_ptr<ASTForStatement> Parser::forStatement() { in forStatement()1221 return std::unique_ptr<ASTForStatement>(new ASTForStatement(start.fPosition, in forStatement()
179 return this->convertFor((ASTForStatement&) statement); in convertStatement()345 std::unique_ptr<Statement> IRGenerator::convertFor(const ASTForStatement& f) { in convertFor()