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" |
8 #include "src/ast/ast-types.h" | 9 #include "src/ast/ast-types.h" |
9 #include "src/ast/ast-value-factory.h" | 10 #include "src/ast/ast-value-factory.h" |
10 #include "src/ast/modules.h" | 11 #include "src/ast/modules.h" |
11 #include "src/ast/variables.h" | 12 #include "src/ast/variables.h" |
12 #include "src/bailout-reason.h" | 13 #include "src/bailout-reason.h" |
13 #include "src/base/flags.h" | 14 #include "src/base/flags.h" |
14 #include "src/factory.h" | 15 #include "src/factory.h" |
15 #include "src/globals.h" | 16 #include "src/globals.h" |
16 #include "src/isolate.h" | 17 #include "src/isolate.h" |
17 #include "src/list.h" | 18 #include "src/list.h" |
(...skipping 3585 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3603 : NULL; \ | 3604 : NULL; \ |
3604 } | 3605 } |
3605 AST_NODE_LIST(DECLARE_NODE_FUNCTIONS) | 3606 AST_NODE_LIST(DECLARE_NODE_FUNCTIONS) |
3606 #undef DECLARE_NODE_FUNCTIONS | 3607 #undef DECLARE_NODE_FUNCTIONS |
3607 | 3608 |
3608 | 3609 |
3609 } // namespace internal | 3610 } // namespace internal |
3610 } // namespace v8 | 3611 } // namespace v8 |
3611 | 3612 |
3612 #endif // V8_AST_AST_H_ | 3613 #endif // V8_AST_AST_H_ |
OLD | NEW |