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_PREPARSER_H | 5 #ifndef V8_PREPARSER_H |
6 #define V8_PREPARSER_H | 6 #define V8_PREPARSER_H |
7 | 7 |
8 #include "src/v8.h" | |
9 | |
10 #include "src/bailout-reason.h" | 8 #include "src/bailout-reason.h" |
11 #include "src/expression-classifier.h" | 9 #include "src/expression-classifier.h" |
12 #include "src/func-name-inferrer.h" | 10 #include "src/func-name-inferrer.h" |
13 #include "src/hashmap.h" | 11 #include "src/hashmap.h" |
14 #include "src/messages.h" | 12 #include "src/messages.h" |
15 #include "src/scanner.h" | 13 #include "src/scanner.h" |
16 #include "src/scopes.h" | 14 #include "src/scopes.h" |
17 #include "src/token.h" | 15 #include "src/token.h" |
18 | 16 |
19 namespace v8 { | 17 namespace v8 { |
(...skipping 4002 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4022 *ok = false; | 4020 *ok = false; |
4023 return; | 4021 return; |
4024 } | 4022 } |
4025 has_seen_constructor_ = true; | 4023 has_seen_constructor_ = true; |
4026 return; | 4024 return; |
4027 } | 4025 } |
4028 } | 4026 } |
4029 } } // v8::internal | 4027 } } // v8::internal |
4030 | 4028 |
4031 #endif // V8_PREPARSER_H | 4029 #endif // V8_PREPARSER_H |
OLD | NEW |