Home | History | Annotate | Download | only in src

Lines Matching defs:BinaryOperation

116   V(BinaryOperation)                            \
1885 class BinaryOperation: public Expression {
1887 DECLARE_NODE_TYPE(BinaryOperation)
1905 BinaryOperation(Isolate* isolate,
2093 BinaryOperation* binary_operation() const { return binary_operation_; }
2131 BinaryOperation* binary_operation_;
3124 BinaryOperation* NewBinaryOperation(Token::Value op,
3128 BinaryOperation* node =
3129 new(zone_) BinaryOperation(isolate_, op, left, right, pos);
3130 VISIT_AND_RETURN(BinaryOperation, node)