Index: src/interpreter/bytecode-generator.h |
diff --git a/src/interpreter/bytecode-generator.h b/src/interpreter/bytecode-generator.h |
index 3ce65322cc4314c81798e37397b6531d70583451..63faedbca83ad6a24db47c79deb2677c13e1d74e 100644 |
--- a/src/interpreter/bytecode-generator.h |
+++ b/src/interpreter/bytecode-generator.h |
@@ -34,6 +34,9 @@ class BytecodeGenerator : public AstVisitor { |
DEFINE_AST_VISITOR_SUBCLASS_MEMBERS(); |
void VisitArithmeticExpression(BinaryOperation* binop); |
+ void VisitCommaExpression(BinaryOperation* binop); |
+ void VisitLogicalOrExpression(BinaryOperation* binop); |
+ void VisitLogicalAndExpression(BinaryOperation* binop); |
void VisitPropertyLoad(Register obj, Property* expr); |
void VisitVariableLoad(Variable* variable, FeedbackVectorSlot slot); |
void VisitVariableAssignment(Variable* variable, FeedbackVectorSlot slot); |