Searched refs:ASTPrefixExpression (Results 1 – 4 of 4) sorted by relevance
19 struct ASTPrefixExpression : public ASTExpression { struct20 ASTPrefixExpression(Token op, std::unique_ptr<ASTExpression> operand) in ASTPrefixExpression() function
155 std::unique_ptr<Expression> convertPrefixExpression(const ASTPrefixExpression& expression);
709 return this->convertPrefixExpression((ASTPrefixExpression&) expr); in convertExpression()1356 const ASTPrefixExpression& expression) { in convertPrefixExpression()
1513 return std::unique_ptr<ASTExpression>(new ASTPrefixExpression(t, std::move(expr))); in unaryExpression()