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

Side by Side Diff: src/parsing/parser-base.h

Issue 2610643002: Various IWYU fixes. (Closed)
Patch Set: fixes + more iwyu 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/parsing/parse-info.cc ('k') | test/cctest/heap/test-alloc.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 #ifndef V8_PARSING_PARSER_BASE_H 5 #ifndef V8_PARSING_PARSER_BASE_H
6 #define V8_PARSING_PARSER_BASE_H 6 #define V8_PARSING_PARSER_BASE_H
7 7
8 #include "src/ast/ast.h" 8 #include "src/ast/ast.h"
9 #include "src/ast/scopes.h" 9 #include "src/ast/scopes.h"
10 #include "src/bailout-reason.h" 10 #include "src/bailout-reason.h"
11 #include "src/base/hashmap.h" 11 #include "src/base/hashmap.h"
12 #include "src/counters.h"
12 #include "src/globals.h" 13 #include "src/globals.h"
13 #include "src/messages.h" 14 #include "src/messages.h"
14 #include "src/parsing/expression-classifier.h" 15 #include "src/parsing/expression-classifier.h"
15 #include "src/parsing/func-name-inferrer.h" 16 #include "src/parsing/func-name-inferrer.h"
16 #include "src/parsing/scanner.h" 17 #include "src/parsing/scanner.h"
17 #include "src/parsing/token.h" 18 #include "src/parsing/token.h"
18 19
19 namespace v8 { 20 namespace v8 {
20 namespace internal { 21 namespace internal {
21 22
(...skipping 5476 matching lines...) Expand 10 before | Expand all | Expand 10 after
5498 has_seen_constructor_ = true; 5499 has_seen_constructor_ = true;
5499 return; 5500 return;
5500 } 5501 }
5501 } 5502 }
5502 5503
5503 5504
5504 } // namespace internal 5505 } // namespace internal
5505 } // namespace v8 5506 } // namespace v8
5506 5507
5507 #endif // V8_PARSING_PARSER_BASE_H 5508 #endif // V8_PARSING_PARSER_BASE_H
OLDNEW
« no previous file with comments | « src/parsing/parse-info.cc ('k') | test/cctest/heap/test-alloc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698