| Index: src/interpreter/bytecode-generator.cc
|
| diff --git a/src/interpreter/bytecode-generator.cc b/src/interpreter/bytecode-generator.cc
|
| index c8b0eedbe204c9b748736512ed825cd3a7852103..f1c8751e44e450d6eedbbb6dfa9f1982149d8fe1 100644
|
| --- a/src/interpreter/bytecode-generator.cc
|
| +++ b/src/interpreter/bytecode-generator.cc
|
| @@ -2032,6 +2032,11 @@ void BytecodeGenerator::VisitLogicalAndExpression(BinaryOperation* binop) {
|
| }
|
|
|
|
|
| +void BytecodeGenerator::VisitRewritableExpression(RewritableExpression* expr) {
|
| + Visit(expr->expression());
|
| +}
|
| +
|
| +
|
| void BytecodeGenerator::VisitNewLocalFunctionContext() {
|
| AccumulatorResultScope accumulator_execution_result(this);
|
| Scope* scope = this->scope();
|
|
|