| Index: src/interpreter/bytecode-generator.cc
|
| diff --git a/src/interpreter/bytecode-generator.cc b/src/interpreter/bytecode-generator.cc
|
| index 6f69771b6d3b6e903fd4240f316b450d86ed04e0..53d6caf6c57cd85f0c19c3570bd92d2a984e873b 100644
|
| --- a/src/interpreter/bytecode-generator.cc
|
| +++ b/src/interpreter/bytecode-generator.cc
|
| @@ -469,6 +469,11 @@ void BytecodeGenerator::VisitNativeFunctionLiteral(
|
| }
|
|
|
|
|
| +void BytecodeGenerator::VisitDoExpression(DoExpression* expr) {
|
| + UNIMPLEMENTED();
|
| +}
|
| +
|
| +
|
| void BytecodeGenerator::VisitConditional(Conditional* expr) { UNIMPLEMENTED(); }
|
|
|
|
|
|
|