OLD | NEW |
1 // Copyright 2015 the V8 project authors. All rights reserved. | 1 // Copyright 2015 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 #include "src/v8.h" | 5 #include "src/v8.h" |
6 | 6 |
| 7 #include "src/api.h" |
7 #include "src/execution.h" | 8 #include "src/execution.h" |
8 #include "src/handles.h" | 9 #include "src/handles.h" |
9 #include "src/interpreter/bytecode-array-builder.h" | 10 #include "src/interpreter/bytecode-array-builder.h" |
10 #include "src/interpreter/interpreter.h" | 11 #include "src/interpreter/interpreter.h" |
11 #include "test/cctest/cctest.h" | 12 #include "test/cctest/cctest.h" |
12 #include "test/cctest/test-feedback-vector.h" | 13 #include "test/cctest/test-feedback-vector.h" |
13 | 14 |
14 namespace v8 { | 15 namespace v8 { |
15 namespace internal { | 16 namespace internal { |
16 namespace interpreter { | 17 namespace interpreter { |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
119 } | 120 } |
120 return function; | 121 return function; |
121 } | 122 } |
122 | 123 |
123 DISALLOW_COPY_AND_ASSIGN(InterpreterTester); | 124 DISALLOW_COPY_AND_ASSIGN(InterpreterTester); |
124 }; | 125 }; |
125 | 126 |
126 } // namespace interpreter | 127 } // namespace interpreter |
127 } // namespace internal | 128 } // namespace internal |
128 } // namespace v8 | 129 } // namespace v8 |
OLD | NEW |