| 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', () => { | 38 suite('scopes and names', () => { |
| 39 dartLanguageTests([ | 39 dartLanguageTests([ |
| 40 'implicit_scope_test', | 40 'implicit_scope_test', |
| 41 ['built_in_identifier_test', 'none', 1] | 41 ['built_in_identifier_test', 'none', 1], |
| 42 'naming3_test' |
| 42 ]); | 43 ]); |
| 43 }); | 44 }); |
| 44 | 45 |
| 46 suite('strings', () => { |
| 47 dartLanguageTests(['optimized_string_charcodeat_test']); |
| 48 }); |
| 49 |
| 45 suite('method binding', () => { | 50 suite('method binding', () => { |
| 46 dartLanguageTests([ | 51 dartLanguageTests([ |
| 47 ['super_bound_closure_test', 'none'], | 52 ['super_bound_closure_test', 'none'], |
| 48 'method_binding_test' | 53 'method_binding_test' |
| 49 ]); | 54 ]); |
| 50 }); | 55 }); |
| 51 | 56 |
| 52 suite('dynamic type literal', () => { | 57 suite('dynamic type literal', () => { |
| 53 dartLanguageTests([ | 58 dartLanguageTests([ |
| 54 ['const_dynamic_type_literal_test', 'none', 1, 3] | 59 ['const_dynamic_type_literal_test', 'none', 1, 3] |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 137 'export_main_override_test', | 142 'export_main_override_test', |
| 138 'export_main_test', | 143 'export_main_test', |
| 139 'export_test', | 144 'export_test', |
| 140 'local_export_test', | 145 'local_export_test', |
| 141 'reexport_core_test', | 146 'reexport_core_test', |
| 142 'top_level_entry_test' | 147 'top_level_entry_test' |
| 143 ]); | 148 ]); |
| 144 }); | 149 }); |
| 145 | 150 |
| 146 })(); | 151 })(); |
| OLD | NEW |