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_AST_AST_H_ | 5 #ifndef V8_AST_AST_H_ |
6 #define V8_AST_AST_H_ | 6 #define V8_AST_AST_H_ |
7 | 7 |
8 #include "src/assembler.h" | |
9 #include "src/ast/ast-types.h" | 8 #include "src/ast/ast-types.h" |
10 #include "src/ast/ast-value-factory.h" | 9 #include "src/ast/ast-value-factory.h" |
11 #include "src/ast/modules.h" | 10 #include "src/ast/modules.h" |
12 #include "src/ast/variables.h" | 11 #include "src/ast/variables.h" |
13 #include "src/bailout-reason.h" | 12 #include "src/bailout-reason.h" |
14 #include "src/base/flags.h" | 13 #include "src/base/flags.h" |
15 #include "src/factory.h" | 14 #include "src/factory.h" |
16 #include "src/globals.h" | 15 #include "src/globals.h" |
17 #include "src/isolate.h" | 16 #include "src/isolate.h" |
| 17 #include "src/label.h" |
18 #include "src/list.h" | 18 #include "src/list.h" |
19 #include "src/parsing/token.h" | 19 #include "src/parsing/token.h" |
20 #include "src/runtime/runtime.h" | 20 #include "src/runtime/runtime.h" |
21 #include "src/small-pointer-list.h" | 21 #include "src/small-pointer-list.h" |
22 #include "src/utils.h" | 22 #include "src/utils.h" |
23 | 23 |
24 namespace v8 { | 24 namespace v8 { |
25 namespace internal { | 25 namespace internal { |
26 | 26 |
27 // The abstract syntax tree is an intermediate, light-weight | 27 // The abstract syntax tree is an intermediate, light-weight |
(...skipping 3611 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3639 : NULL; \ | 3639 : NULL; \ |
3640 } | 3640 } |
3641 AST_NODE_LIST(DECLARE_NODE_FUNCTIONS) | 3641 AST_NODE_LIST(DECLARE_NODE_FUNCTIONS) |
3642 #undef DECLARE_NODE_FUNCTIONS | 3642 #undef DECLARE_NODE_FUNCTIONS |
3643 | 3643 |
3644 | 3644 |
3645 } // namespace internal | 3645 } // namespace internal |
3646 } // namespace v8 | 3646 } // namespace v8 |
3647 | 3647 |
3648 #endif // V8_AST_AST_H_ | 3648 #endif // V8_AST_AST_H_ |
OLD | NEW |