Home | History | Annotate | Download | only in ast

Lines Matching refs:BinaryOperation

98   V(BinaryOperation)            \
2102 class BinaryOperation final : public Expression {
2130 // BinaryOperation will have both a slot in the feedback vector and the
2154 BinaryOperation(Token::Value op, Expression* left, Expression* right, int pos)
2388 BinaryOperation* binary_operation() const { return binary_operation_; }
2443 BinaryOperation* binary_operation_;
3428 BinaryOperation* NewBinaryOperation(Token::Value op,
3432 return new (zone_) BinaryOperation(op, left, right, pos);