| 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_H_ | 5 #ifndef V8_AST_H_ |
| 6 #define V8_AST_H_ | 6 #define V8_AST_H_ |
| 7 | 7 |
| 8 #include "src/v8.h" | |
| 9 | |
| 10 #include "src/assembler.h" | 8 #include "src/assembler.h" |
| 11 #include "src/ast-value-factory.h" | 9 #include "src/ast-value-factory.h" |
| 12 #include "src/bailout-reason.h" | 10 #include "src/bailout-reason.h" |
| 13 #include "src/base/flags.h" | 11 #include "src/base/flags.h" |
| 14 #include "src/base/smart-pointers.h" | 12 #include "src/base/smart-pointers.h" |
| 15 #include "src/factory.h" | 13 #include "src/factory.h" |
| 16 #include "src/isolate.h" | 14 #include "src/isolate.h" |
| 17 #include "src/jsregexp.h" | 15 #include "src/jsregexp.h" |
| 18 #include "src/list-inl.h" | 16 #include "src/list-inl.h" |
| 19 #include "src/modules.h" | 17 #include "src/modules.h" |
| (...skipping 3609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3629 | 3627 |
| 3630 private: | 3628 private: |
| 3631 Zone* zone_; | 3629 Zone* zone_; |
| 3632 AstValueFactory* ast_value_factory_; | 3630 AstValueFactory* ast_value_factory_; |
| 3633 }; | 3631 }; |
| 3634 | 3632 |
| 3635 | 3633 |
| 3636 } } // namespace v8::internal | 3634 } } // namespace v8::internal |
| 3637 | 3635 |
| 3638 #endif // V8_AST_H_ | 3636 #endif // V8_AST_H_ |
| OLD | NEW |