OLD | NEW |
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 #include <set> | 5 #include <set> |
6 | 6 |
7 #include "vm/kernel_to_il.h" | 7 #include "vm/kernel_to_il.h" |
8 | 8 |
9 #include "vm/compiler.h" | 9 #include "vm/compiler.h" |
10 #include "vm/intermediate_language.h" | 10 #include "vm/intermediate_language.h" |
11 #include "vm/kernel_binary_flowgraph.h" | 11 #include "vm/kernel_binary_flowgraph.h" |
12 #include "vm/kernel_reader.h" | 12 #include "vm/kernel_loader.h" |
13 #include "vm/longjump.h" | 13 #include "vm/longjump.h" |
14 #include "vm/method_recognizer.h" | 14 #include "vm/method_recognizer.h" |
15 #include "vm/object_store.h" | 15 #include "vm/object_store.h" |
16 #include "vm/report.h" | 16 #include "vm/report.h" |
17 #include "vm/resolver.h" | 17 #include "vm/resolver.h" |
18 #include "vm/stack_frame.h" | 18 #include "vm/stack_frame.h" |
19 | 19 |
20 #if !defined(DART_PRECOMPILED_RUNTIME) | 20 #if !defined(DART_PRECOMPILED_RUNTIME) |
21 namespace dart { | 21 namespace dart { |
22 | 22 |
(...skipping 2391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2414 array_object = AsSortedDuplicateFreeArray(&token_positions); | 2414 array_object = AsSortedDuplicateFreeArray(&token_positions); |
2415 script.set_debug_positions(array_object); | 2415 script.set_debug_positions(array_object); |
2416 array_object = AsSortedDuplicateFreeArray(&yield_positions); | 2416 array_object = AsSortedDuplicateFreeArray(&yield_positions); |
2417 script.set_yield_positions(array_object); | 2417 script.set_yield_positions(array_object); |
2418 } | 2418 } |
2419 | 2419 |
2420 } // namespace kernel | 2420 } // namespace kernel |
2421 } // namespace dart | 2421 } // namespace dart |
2422 | 2422 |
2423 #endif // !defined(DART_PRECOMPILED_RUNTIME) | 2423 #endif // !defined(DART_PRECOMPILED_RUNTIME) |
OLD | NEW |