| Index: src/interpreter/bytecode-generator.cc
|
| diff --git a/src/interpreter/bytecode-generator.cc b/src/interpreter/bytecode-generator.cc
|
| index 520dbd4c03d086ea267c6efa62fc65423949dde4..c4a5f03971a4bcea49059473413dc4fe5964eccc 100644
|
| --- a/src/interpreter/bytecode-generator.cc
|
| +++ b/src/interpreter/bytecode-generator.cc
|
| @@ -121,6 +121,12 @@ void BytecodeGenerator::VisitEmptyStatement(EmptyStatement* stmt) {
|
| void BytecodeGenerator::VisitIfStatement(IfStatement* stmt) { UNIMPLEMENTED(); }
|
|
|
|
|
| +void BytecodeGenerator::VisitSloppyBlockFunctionStatement(
|
| + SloppyBlockFunctionStatement* stmt) {
|
| + Visit(stmt->statement());
|
| +}
|
| +
|
| +
|
| void BytecodeGenerator::VisitContinueStatement(ContinueStatement* stmt) {
|
| UNIMPLEMENTED();
|
| }
|
|
|