| Index: src/ast.h
|
| diff --git a/src/ast.h b/src/ast.h
|
| index 568725d33f835c62e7e8fc6a19640f92418f0b4e..8fd63d08b30ef793c8c4518dd2e11f698cba3f52 100644
|
| --- a/src/ast.h
|
| +++ b/src/ast.h
|
| @@ -1881,9 +1881,6 @@ class BinaryOperation: public Expression {
|
| BailoutId RightId() const { return right_id_; }
|
|
|
| TypeFeedbackId BinaryOperationFeedbackId() const { return reuse(id()); }
|
| - // TODO(rossberg): result_type should be subsumed by lower_type.
|
| - Handle<Type> result_type() const { return result_type_; }
|
| - void set_result_type(Handle<Type> type) { result_type_ = type; }
|
| Maybe<int> fixed_right_arg() const { return fixed_right_arg_; }
|
| void set_fixed_right_arg(Maybe<int> arg) { fixed_right_arg_ = arg; }
|
|
|
| @@ -1908,7 +1905,6 @@ class BinaryOperation: public Expression {
|
| Expression* right_;
|
| int pos_;
|
|
|
| - Handle<Type> result_type_;
|
| // TODO(rossberg): the fixed arg should probably be represented as a Constant
|
| // type for the RHS.
|
| Maybe<int> fixed_right_arg_;
|
|
|