| 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 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 395 dart_library.import(s + '/' + name).main(); | 395 dart_library.import(s + '/' + name).main(); |
| 396 | 396 |
| 397 if (!async_helper.asyncTestStarted) done(); | 397 if (!async_helper.asyncTestStarted) done(); |
| 398 }); | 398 }); |
| 399 } | 399 } |
| 400 } | 400 } |
| 401 }); | 401 }); |
| 402 } | 402 } |
| 403 | 403 |
| 404 dart_library.import('language/async_await_test_none_multi').main(); | 404 dart_library.import('language/async_await_test_none_multi').main(); |
| 405 dart_library.import('language/async_star_test_none_multi').main(); | 405 // TODO(vsm): Re-enable. |
| 406 // See https://github.com/dart-lang/dev_compiler/issues/456 |
| 407 // dart_library.import('language/async_star_test_none_multi').main(); |
| 406 | 408 |
| 407 })(); | 409 })(); |
| OLD | NEW |