OLD | NEW |
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/scopes.h" | 9 #include "src/ast/scopes.h" |
9 #include "src/bailout-reason.h" | 10 #include "src/bailout-reason.h" |
10 #include "src/base/hashmap.h" | 11 #include "src/base/hashmap.h" |
11 #include "src/globals.h" | 12 #include "src/globals.h" |
12 #include "src/messages.h" | 13 #include "src/messages.h" |
13 #include "src/parsing/expression-classifier.h" | 14 #include "src/parsing/expression-classifier.h" |
14 #include "src/parsing/func-name-inferrer.h" | 15 #include "src/parsing/func-name-inferrer.h" |
15 #include "src/parsing/scanner.h" | 16 #include "src/parsing/scanner.h" |
16 #include "src/parsing/token.h" | 17 #include "src/parsing/token.h" |
17 | 18 |
(...skipping 3943 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3961 has_seen_constructor_ = true; | 3962 has_seen_constructor_ = true; |
3962 return; | 3963 return; |
3963 } | 3964 } |
3964 } | 3965 } |
3965 | 3966 |
3966 | 3967 |
3967 } // namespace internal | 3968 } // namespace internal |
3968 } // namespace v8 | 3969 } // namespace v8 |
3969 | 3970 |
3970 #endif // V8_PARSING_PARSER_BASE_H | 3971 #endif // V8_PARSING_PARSER_BASE_H |
OLD | NEW |