| Index: src/full-codegen.cc
|
| diff --git a/src/full-codegen.cc b/src/full-codegen.cc
|
| index 0f44cf233ea9efc1497ff78c151ae08bf6b82ede..960b4b1aa15808c08fce252d4725c81f2768692e 100644
|
| --- a/src/full-codegen.cc
|
| +++ b/src/full-codegen.cc
|
| @@ -851,7 +851,7 @@ void FullCodeGenerator::VisitInCurrentContext(Expression* expr) {
|
|
|
| void FullCodeGenerator::VisitBlock(Block* stmt) {
|
| Comment cmnt(masm_, "[ Block");
|
| - Breakable nested_statement(this, stmt);
|
| + NestedBlock nested_block(this, stmt);
|
| SetStatementPosition(stmt);
|
|
|
| Scope* saved_scope = scope();
|
| @@ -871,7 +871,7 @@ void FullCodeGenerator::VisitBlock(Block* stmt) {
|
| PrepareForBailoutForId(stmt->EntryId(), NO_REGISTERS);
|
| VisitStatements(stmt->statements());
|
| scope_ = saved_scope;
|
| - __ bind(nested_statement.break_label());
|
| + __ bind(nested_block.break_label());
|
| PrepareForBailoutForId(stmt->ExitId(), NO_REGISTERS);
|
| }
|
|
|
|
|