| 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('cascade', () => { |
| 39 dartLanguageTests(['cascade_in_expression_function_test']); |
| 40 }); |
| 41 |
| 38 suite('null aware ops', () => { | 42 suite('null aware ops', () => { |
| 39 dartLanguageTests([ | 43 dartLanguageTests([ |
| 40 ['conditional_method_invocation_test', 'none', 1, 2, 3, 4], | 44 ['conditional_method_invocation_test', 'none', 1, 2, 3, 4], |
| 41 ['conditional_property_access_test', 'none', 1, 2, 3], | 45 ['conditional_property_access_test', 'none', 1, 2, 3], |
| 42 ['conditional_property_assignment_test', 'none', 1, 2, 3, 7, 8, 9], | 46 ['conditional_property_assignment_test', 'none', 1, 2, 3, 7, 8, 9], |
| 43 ['conditional_property_increment_decrement_test', | 47 ['conditional_property_increment_decrement_test', |
| 44 'none', 1, 2, 3, 5, 6, 7, 9, 10, 11, 13, 14, 15], | 48 'none', 1, 2, 3, 5, 6, 7, 9, 10, 11, 13, 14, 15], |
| 45 ['if_null_assignment_behavior_test', 'none', | 49 ['if_null_assignment_behavior_test', 'none', |
| 46 1, 2, 5, 6, 7, 8, 9, 10, 11, 12, 16, 17, 18, 19, 20, 21, 22, 23, 24, | 50 1, 2, 5, 6, 7, 8, 9, 10, 11, 12, 16, 17, 18, 19, 20, 21, 22, 23, 24, |
| 47 25, 26, 27, 28, 31, 32], | 51 25, 26, 27, 28, 31, 32], |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 'export_main_override_test', | 117 'export_main_override_test', |
| 114 'export_main_test', | 118 'export_main_test', |
| 115 'export_test', | 119 'export_test', |
| 116 'local_export_test', | 120 'local_export_test', |
| 117 'reexport_core_test', | 121 'reexport_core_test', |
| 118 'top_level_entry_test' | 122 'top_level_entry_test' |
| 119 ]); | 123 ]); |
| 120 }); | 124 }); |
| 121 | 125 |
| 122 })(); | 126 })(); |
| OLD | NEW |