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 <memory> | 8 #include <memory> |
9 | 9 |
10 #include "src/allocation.h" | 10 #include "src/allocation.h" |
11 #include "src/bailout-reason.h" | 11 #include "src/bailout-reason.h" |
12 #include "src/contexts.h" | 12 #include "src/contexts.h" |
13 #include "src/isolate.h" | 13 #include "src/isolate.h" |
14 #include "src/zone.h" | 14 #include "src/zone/zone.h" |
15 | 15 |
16 namespace v8 { | 16 namespace v8 { |
17 namespace internal { | 17 namespace internal { |
18 | 18 |
19 // Forward declarations. | 19 // Forward declarations. |
20 class CompilationInfo; | 20 class CompilationInfo; |
21 class CompilationJob; | 21 class CompilationJob; |
22 class JavaScriptFrame; | 22 class JavaScriptFrame; |
23 class ParseInfo; | 23 class ParseInfo; |
24 class ScriptData; | 24 class ScriptData; |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
222 state_ = State::kFailed; | 222 state_ = State::kFailed; |
223 } | 223 } |
224 return status; | 224 return status; |
225 } | 225 } |
226 }; | 226 }; |
227 | 227 |
228 } // namespace internal | 228 } // namespace internal |
229 } // namespace v8 | 229 } // namespace v8 |
230 | 230 |
231 #endif // V8_COMPILER_H_ | 231 #endif // V8_COMPILER_H_ |
OLD | NEW |