Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2015, 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 (function() { | 5 (function() { |
| 6 'use strict'; | 6 'use strict'; |
| 7 | 7 |
| 8 let _isolate_helper = dart_library.import('dart/_isolate_helper'); | 8 let _isolate_helper = dart_library.import('dart/_isolate_helper'); |
| 9 _isolate_helper.startRootIsolate(function() {}, []); | 9 _isolate_helper.startRootIsolate(function() {}, []); |
| 10 let async_helper = dart_library.import('async_helper/async_helper'); | 10 let async_helper = dart_library.import('async_helper/async_helper'); |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 187 'infinite_switch_label_test', | 187 'infinite_switch_label_test', |
| 188 'infinity_test', | 188 'infinity_test', |
| 189 'instance_creation_in_function_annotation_test', | 189 'instance_creation_in_function_annotation_test', |
| 190 'instanceof2_test', | 190 'instanceof2_test', |
| 191 'instanceof4_test_01_multi', | 191 'instanceof4_test_01_multi', |
| 192 'instanceof4_test_none_multi', | 192 'instanceof4_test_none_multi', |
| 193 'instanceof_optimized_test', | 193 'instanceof_optimized_test', |
| 194 'int_test', | 194 'int_test', |
| 195 'integer_division_by_zero_test', | 195 'integer_division_by_zero_test', |
| 196 'interceptor_test', | 196 'interceptor_test', |
| 197 'interceptor9_test', | |
|
Jennifer Messerly
2016/01/28 00:46:18
The interceptor9_test expects to create a typed ar
| |
| 197 'is_nan_test', | 198 'is_nan_test', |
| 198 'issue10747_test', | 199 'issue10747_test', |
| 199 'issue13179_test', | 200 'issue13179_test', |
| 200 'issue21079_test', | 201 'issue21079_test', |
| 201 'issue21957_test', | 202 'issue21957_test', |
| 202 'issue_1751477_test', | 203 'issue_1751477_test', |
| 203 'issue_22780_test_01_multi', | 204 'issue_22780_test_01_multi', |
| 204 'issue_23914_test', | 205 'issue_23914_test', |
| 205 'js_properties_test', | 206 'js_properties_test', |
| 206 'lazy_static3_test', | 207 'lazy_static3_test', |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 363 if (!async_helper.asyncTestStarted) done(); | 364 if (!async_helper.asyncTestStarted) done(); |
| 364 }); | 365 }); |
| 365 } | 366 } |
| 366 } | 367 } |
| 367 }); | 368 }); |
| 368 | 369 |
| 369 dart_library.import('language/async_await_test_none_multi').main(); | 370 dart_library.import('language/async_await_test_none_multi').main(); |
| 370 dart_library.import('language/async_star_test_none_multi').main(); | 371 dart_library.import('language/async_star_test_none_multi').main(); |
| 371 | 372 |
| 372 })(); | 373 })(); |
| OLD | NEW |