| Index: src/interpreter/bytecode-generator.h
|
| diff --git a/src/interpreter/bytecode-generator.h b/src/interpreter/bytecode-generator.h
|
| index 2fe8b324d8cc539cd7f952631373b2b8845e9a1c..798970e8f2dc8f8b1c4b8f6aba80c62a327ce07a 100644
|
| --- a/src/interpreter/bytecode-generator.h
|
| +++ b/src/interpreter/bytecode-generator.h
|
| @@ -37,6 +37,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);
|
|
|