| 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 17 matching lines...) Expand all Loading... |
| 28 testCase = (testCase < 10 ? '0' : '') + testCase; | 28 testCase = (testCase < 10 ? '0' : '') + testCase; |
| 29 } | 29 } |
| 30 dartLanguageTest(`${multitestName}_${testCase}_multi`); | 30 dartLanguageTest(`${multitestName}_${testCase}_multi`); |
| 31 } | 31 } |
| 32 } else { | 32 } else { |
| 33 dartLanguageTest(name); | 33 dartLanguageTest(name); |
| 34 } | 34 } |
| 35 } | 35 } |
| 36 } | 36 } |
| 37 | 37 |
| 38 suite('scoping', () => { |
| 39 dartLanguageTests([ |
| 40 'implicit_scope_test', |
| 41 ['built_in_identifier_test', 'none', 1] |
| 42 ]); |
| 43 }); |
| 44 |
| 38 suite('dynamic type literal', () => { | 45 suite('dynamic type literal', () => { |
| 39 dartLanguageTests([ | 46 dartLanguageTests([ |
| 40 ['const_dynamic_type_literal_test', 'none', 1, 3] | 47 ['const_dynamic_type_literal_test', 'none', 1, 3] |
| 41 ]); | 48 ]); |
| 42 }); | 49 }); |
| 43 | 50 |
| 44 suite('cascade', () => { | 51 suite('cascade', () => { |
| 45 dartLanguageTests(['cascade_in_expression_function_test']); | 52 dartLanguageTests(['cascade_in_expression_function_test']); |
| 46 }); | 53 }); |
| 47 | 54 |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 'export_main_override_test', | 130 'export_main_override_test', |
| 124 'export_main_test', | 131 'export_main_test', |
| 125 'export_test', | 132 'export_test', |
| 126 'local_export_test', | 133 'local_export_test', |
| 127 'reexport_core_test', | 134 'reexport_core_test', |
| 128 'top_level_entry_test' | 135 'top_level_entry_test' |
| 129 ]); | 136 ]); |
| 130 }); | 137 }); |
| 131 | 138 |
| 132 })(); | 139 })(); |
| OLD | NEW |