| Index: src/interpreter/bytecode-generator.cc
|
| diff --git a/src/interpreter/bytecode-generator.cc b/src/interpreter/bytecode-generator.cc
|
| index ebfdf33c581585628e491e43102b366e18f6ea77..4ef0506a12388cf0f534058b33b98e21f3689169 100644
|
| --- a/src/interpreter/bytecode-generator.cc
|
| +++ b/src/interpreter/bytecode-generator.cc
|
| @@ -1222,7 +1222,8 @@ void BytecodeGenerator::VisitNativeFunctionLiteral(
|
|
|
|
|
| void BytecodeGenerator::VisitDoExpression(DoExpression* expr) {
|
| - UNIMPLEMENTED();
|
| + VisitBlock(expr->block());
|
| + VisitVariableProxy(expr->result());
|
| }
|
|
|
|
|
|
|