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

Side by Side Diff: src/ast/prettyprinter.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/ast/modules.cc ('k') | src/ast/scopes.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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/ast/prettyprinter.h" 5 #include "src/ast/prettyprinter.h"
6 6
7 #include <stdarg.h> 7 #include <stdarg.h>
8 8
9 #include "src/ast/ast-value-factory.h" 9 #include "src/ast/ast-value-factory.h"
10 #include "src/ast/scopes.h" 10 #include "src/ast/scopes.h"
11 #include "src/base/platform/platform.h" 11 #include "src/base/platform/platform.h"
12 #include "src/globals.h" 12 #include "src/globals.h"
13 #include "src/objects-inl.h"
13 14
14 namespace v8 { 15 namespace v8 {
15 namespace internal { 16 namespace internal {
16 17
17 CallPrinter::CallPrinter(Isolate* isolate, bool is_user_js) 18 CallPrinter::CallPrinter(Isolate* isolate, bool is_user_js)
18 : builder_(isolate) { 19 : builder_(isolate) {
19 isolate_ = isolate; 20 isolate_ = isolate;
20 position_ = 0; 21 position_ = 0;
21 num_prints_ = 0; 22 num_prints_ = 0;
22 found_ = false; 23 found_ = false;
(...skipping 1196 matching lines...) Expand 10 before | Expand all | Expand 10 after
1219 1220
1220 void AstPrinter::VisitRewritableExpression(RewritableExpression* node) { 1221 void AstPrinter::VisitRewritableExpression(RewritableExpression* node) {
1221 Visit(node->expression()); 1222 Visit(node->expression());
1222 } 1223 }
1223 1224
1224 1225
1225 #endif // DEBUG 1226 #endif // DEBUG
1226 1227
1227 } // namespace internal 1228 } // namespace internal
1228 } // namespace v8 1229 } // namespace v8
OLDNEW
« no previous file with comments | « src/ast/modules.cc ('k') | src/ast/scopes.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698