| OLD | NEW |
| 1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "src/interpreter/control-flow-builders.h" | 5 #include "src/interpreter/control-flow-builders.h" |
| 6 #include "src/objects-inl.h" |
| 6 | 7 |
| 7 namespace v8 { | 8 namespace v8 { |
| 8 namespace internal { | 9 namespace internal { |
| 9 namespace interpreter { | 10 namespace interpreter { |
| 10 | 11 |
| 11 | 12 |
| 12 BreakableControlFlowBuilder::~BreakableControlFlowBuilder() { | 13 BreakableControlFlowBuilder::~BreakableControlFlowBuilder() { |
| 13 DCHECK(break_labels_.empty() || break_labels_.is_bound()); | 14 DCHECK(break_labels_.empty() || break_labels_.is_bound()); |
| 14 } | 15 } |
| 15 | 16 |
| (...skipping 116 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 | 133 |
| 133 void TryFinallyBuilder::BeginFinally() { finalization_sites_.Bind(builder()); } | 134 void TryFinallyBuilder::BeginFinally() { finalization_sites_.Bind(builder()); } |
| 134 | 135 |
| 135 void TryFinallyBuilder::EndFinally() { | 136 void TryFinallyBuilder::EndFinally() { |
| 136 // Nothing to be done here. | 137 // Nothing to be done here. |
| 137 } | 138 } |
| 138 | 139 |
| 139 } // namespace interpreter | 140 } // namespace interpreter |
| 140 } // namespace internal | 141 } // namespace internal |
| 141 } // namespace v8 | 142 } // namespace v8 |
| OLD | NEW |