Home | History | Annotate | Download | only in src

Lines Matching defs:BinaryOperation

111   V(BinaryOperation)                            \
1742 class BinaryOperation: public Expression {
1744 DECLARE_NODE_TYPE(BinaryOperation)
1759 BinaryOperation(Isolate* isolate,
1937 BinaryOperation* binary_operation() const { return binary_operation_; }
1984 BinaryOperation* binary_operation_;
2883 BinaryOperation* NewBinaryOperation(Token::Value op,
2887 BinaryOperation* node =
2888 new(zone_) BinaryOperation(isolate_, op, left, right, pos);
2889 VISIT_AND_RETURN(BinaryOperation, node)