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 24 matching lines...) Expand all Loading... |
35 } | 35 } |
36 } | 36 } |
37 | 37 |
38 suite('scoping', () => { | 38 suite('scoping', () => { |
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 ]); | 42 ]); |
43 }); | 43 }); |
44 | 44 |
| 45 suite('method binding', () => { |
| 46 dartLanguageTests([ |
| 47 ['super_bound_closure_test', 'none'], |
| 48 'method_binding_test' |
| 49 ]); |
| 50 }); |
| 51 |
45 suite('dynamic type literal', () => { | 52 suite('dynamic type literal', () => { |
46 dartLanguageTests([ | 53 dartLanguageTests([ |
47 ['const_dynamic_type_literal_test', 'none', 1, 3] | 54 ['const_dynamic_type_literal_test', 'none', 1, 3] |
48 ]); | 55 ]); |
49 }); | 56 }); |
50 | 57 |
51 suite('cascade', () => { | 58 suite('cascade', () => { |
52 dartLanguageTests(['cascade_in_expression_function_test']); | 59 dartLanguageTests(['cascade_in_expression_function_test']); |
53 }); | 60 }); |
54 | 61 |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 'export_main_override_test', | 137 'export_main_override_test', |
131 'export_main_test', | 138 'export_main_test', |
132 'export_test', | 139 'export_test', |
133 'local_export_test', | 140 'local_export_test', |
134 'reexport_core_test', | 141 'reexport_core_test', |
135 'top_level_entry_test' | 142 'top_level_entry_test' |
136 ]); | 143 ]); |
137 }); | 144 }); |
138 | 145 |
139 })(); | 146 })(); |
OLD | NEW |