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_COMPILER_H_ | 5 #ifndef V8_COMPILER_H_ |
6 #define V8_COMPILER_H_ | 6 #define V8_COMPILER_H_ |
7 | 7 |
8 #include "src/allocation.h" | 8 #include "src/allocation.h" |
| 9 #include "src/ast/ast-traversal-visitor.h" |
9 #include "src/ast/ast.h" | 10 #include "src/ast/ast.h" |
10 #include "src/bailout-reason.h" | 11 #include "src/bailout-reason.h" |
11 #include "src/compilation-dependencies.h" | 12 #include "src/compilation-dependencies.h" |
12 #include "src/source-position-table.h" | 13 #include "src/source-position-table.h" |
13 #include "src/source-position.h" | 14 #include "src/source-position.h" |
14 #include "src/zone.h" | 15 #include "src/zone.h" |
15 | 16 |
16 namespace v8 { | 17 namespace v8 { |
17 namespace internal { | 18 namespace internal { |
18 | 19 |
(...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
572 MUST_USE_RESULT Status SetLastStatus(Status status) { | 573 MUST_USE_RESULT Status SetLastStatus(Status status) { |
573 last_status_ = status; | 574 last_status_ = status; |
574 return last_status_; | 575 return last_status_; |
575 } | 576 } |
576 }; | 577 }; |
577 | 578 |
578 } // namespace internal | 579 } // namespace internal |
579 } // namespace v8 | 580 } // namespace v8 |
580 | 581 |
581 #endif // V8_COMPILER_H_ | 582 #endif // V8_COMPILER_H_ |
OLD | NEW |