Index: src/ast.h |
diff --git a/src/ast.h b/src/ast.h |
index 4e851f217c8279d6173fd4259ed3fff25fc2dd4c..373adf953440ae692e44fffba7e3d29487c19684 100644 |
--- a/src/ast.h |
+++ b/src/ast.h |
@@ -1799,6 +1799,8 @@ class BinaryOperation: public Expression { |
TypeInfo left_type() const { return left_type_; } |
TypeInfo right_type() const { return right_type_; } |
TypeInfo result_type() const { return result_type_; } |
+ bool has_fixed_right_arg() const { return has_fixed_right_arg_; } |
+ int fixed_right_arg_value() const { return fixed_right_arg_value_; } |
protected: |
BinaryOperation(Isolate* isolate, |
@@ -1824,6 +1826,8 @@ class BinaryOperation: public Expression { |
TypeInfo left_type_; |
TypeInfo right_type_; |
TypeInfo result_type_; |
+ bool has_fixed_right_arg_; |
+ int fixed_right_arg_value_; |
// The short-circuit logical operations need an AST ID for their |
// right-hand subexpression. |