Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(387)

Side by Side Diff: src/interpreter/control-flow-builders.cc

Issue 2622503002: include fixing: api.h shouldn't include objects-inl.h (Closed)
Patch Set: static type check Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/interpreter/bytecode-label.cc ('k') | src/layout-descriptor.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « src/interpreter/bytecode-label.cc ('k') | src/layout-descriptor.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698