Searched defs:IfStatement (Results 1 – 5 of 5) sorted by relevance
19 struct IfStatement : public Statement { struct20 IfStatement(int offset, bool isStatic, std::unique_ptr<Expression> test, in IfStatement() function28 String description() const override { in description()40 bool fIsStatic;41 std::unique_ptr<Expression> fTest;42 std::unique_ptr<Statement> fIfTrue;44 std::unique_ptr<Statement> fIfFalse;46 typedef Statement INHERITED;
19 struct IfStatement : public Statement { struct20 IfStatement(int offset, bool isStatic, std::unique_ptr<Expression> test, in IfStatement() argument28 String description() const override { in description()40 bool fIsStatic;41 std::unique_ptr<Expression> fTest;42 std::unique_ptr<Statement> fIfTrue;44 std::unique_ptr<Statement> fIfFalse;46 typedef Statement INHERITED;
3934 final public IfStmt IfStatement() {Expression condition; in IfStatement() method in ASTParser
4044 final public IfStmt IfStatement() { in IfStatement() method in ASTParser
1044 IfStatement(Expression* condition, Statement* then_statement, in IfStatement() function