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/ast/ast-value-factory.h" | 8 #include "src/ast/ast-value-factory.h" |
9 #include "src/ast/modules.h" | 9 #include "src/ast/modules.h" |
10 #include "src/ast/variables.h" | 10 #include "src/ast/variables.h" |
11 #include "src/bailout-reason.h" | 11 #include "src/bailout-reason.h" |
12 #include "src/base/flags.h" | 12 #include "src/base/flags.h" |
13 #include "src/base/smart-pointers.h" | |
14 #include "src/factory.h" | 13 #include "src/factory.h" |
15 #include "src/globals.h" | 14 #include "src/globals.h" |
16 #include "src/isolate.h" | 15 #include "src/isolate.h" |
17 #include "src/list.h" | 16 #include "src/list.h" |
18 #include "src/parsing/token.h" | 17 #include "src/parsing/token.h" |
19 #include "src/runtime/runtime.h" | 18 #include "src/runtime/runtime.h" |
20 #include "src/small-pointer-list.h" | 19 #include "src/small-pointer-list.h" |
21 #include "src/types.h" | 20 #include "src/types.h" |
22 #include "src/utils.h" | 21 #include "src/utils.h" |
23 | 22 |
(...skipping 3548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3572 : NULL; \ | 3571 : NULL; \ |
3573 } | 3572 } |
3574 AST_NODE_LIST(DECLARE_NODE_FUNCTIONS) | 3573 AST_NODE_LIST(DECLARE_NODE_FUNCTIONS) |
3575 #undef DECLARE_NODE_FUNCTIONS | 3574 #undef DECLARE_NODE_FUNCTIONS |
3576 | 3575 |
3577 | 3576 |
3578 } // namespace internal | 3577 } // namespace internal |
3579 } // namespace v8 | 3578 } // namespace v8 |
3580 | 3579 |
3581 #endif // V8_AST_AST_H_ | 3580 #endif // V8_AST_AST_H_ |
OLD | NEW |