| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 // TODO(zra): Remove when tests are ready to enable. |
| 6 #include "platform/globals.h" |
| 7 #if !defined(TARGET_ARCH_ARM64) |
| 8 |
| 5 #include "include/dart_debugger_api.h" | 9 #include "include/dart_debugger_api.h" |
| 6 #include "include/dart_mirrors_api.h" | 10 #include "include/dart_mirrors_api.h" |
| 7 #include "platform/assert.h" | 11 #include "platform/assert.h" |
| 8 #include "vm/dart_api_impl.h" | 12 #include "vm/dart_api_impl.h" |
| 9 #include "vm/thread.h" | 13 #include "vm/thread.h" |
| 10 #include "vm/unit_test.h" | 14 #include "vm/unit_test.h" |
| 11 | 15 |
| 12 namespace dart { | 16 namespace dart { |
| 13 | 17 |
| 14 DECLARE_FLAG(int, optimization_counter_threshold); | 18 DECLARE_FLAG(int, optimization_counter_threshold); |
| (...skipping 2117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2132 " null, 3, 7, 1, 8, 6, 9, 10, 10, 11, 11, 13," | 2136 " null, 3, 7, 1, 8, 6, 9, 10, 10, 11, 11, 13," |
| 2133 " null, 4, 13, 3, 14, 10," | 2137 " null, 4, 13, 3, 14, 10," |
| 2134 " null, 5, 17, 5, 18, 9, 19, 12," | 2138 " null, 5, 17, 5, 18, 9, 19, 12," |
| 2135 " null, 6, 21, 1," | 2139 " null, 6, 21, 1," |
| 2136 " null, 8, 24, 1, 25, 5, 26, 6, 27, 8," | 2140 " null, 8, 24, 1, 25, 5, 26, 6, 27, 8," |
| 2137 " null, 9, 29, 1]", | 2141 " null, 9, 29, 1]", |
| 2138 tokens_cstr); | 2142 tokens_cstr); |
| 2139 } | 2143 } |
| 2140 | 2144 |
| 2141 } // namespace dart | 2145 } // namespace dart |
| 2146 |
| 2147 #endif // !defined(TARGET_ARCH_ARM64) |
| OLD | NEW |