| 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('dynamic type literal', () => { |
| 39 dartLanguageTests([ |
| 40 ['const_dynamic_type_literal_test', 'none', 1, 3] |
| 41 ]); |
| 42 }); |
| 43 |
| 38 suite('cascade', () => { | 44 suite('cascade', () => { |
| 39 dartLanguageTests(['cascade_in_expression_function_test']); | 45 dartLanguageTests(['cascade_in_expression_function_test']); |
| 40 }); | 46 }); |
| 41 | 47 |
| 42 suite('null aware ops', () => { | 48 suite('null aware ops', () => { |
| 43 dartLanguageTests([ | 49 dartLanguageTests([ |
| 44 ['conditional_method_invocation_test', 'none', 1, 2, 3, 4], | 50 ['conditional_method_invocation_test', 'none', 1, 2, 3, 4], |
| 45 ['conditional_property_access_test', 'none', 1, 2, 3], | 51 ['conditional_property_access_test', 'none', 1, 2, 3], |
| 46 ['conditional_property_assignment_test', 'none', 1, 2, 3, 7, 8, 9], | 52 ['conditional_property_assignment_test', 'none', 1, 2, 3, 7, 8, 9], |
| 47 ['conditional_property_increment_decrement_test', | 53 ['conditional_property_increment_decrement_test', |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 117 'export_main_override_test', | 123 'export_main_override_test', |
| 118 'export_main_test', | 124 'export_main_test', |
| 119 'export_test', | 125 'export_test', |
| 120 'local_export_test', | 126 'local_export_test', |
| 121 'reexport_core_test', | 127 'reexport_core_test', |
| 122 'top_level_entry_test' | 128 'top_level_entry_test' |
| 123 ]); | 129 ]); |
| 124 }); | 130 }); |
| 125 | 131 |
| 126 })(); | 132 })(); |
| OLD | NEW |