OLD | NEW |
1 // Copyright (c) 2016, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2016, 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 library analyzer.test.src.summary.summarize_ast_test; | 5 library analyzer.test.src.summary.summarize_ast_test; |
6 | 6 |
7 import 'package:unittest/unittest.dart'; | 7 import 'package:unittest/unittest.dart'; |
8 | 8 |
9 import '../../reflective_tests.dart'; | 9 import '../../reflective_tests.dart'; |
10 import 'summarize_ast_test.dart'; | 10 import 'summarize_ast_test.dart'; |
(...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 test_linked_type_dependency_reuse() { | 151 test_linked_type_dependency_reuse() { |
152 // TODO(paulberry): fix. | 152 // TODO(paulberry): fix. |
153 } | 153 } |
154 | 154 |
155 @override | 155 @override |
156 test_method_inferred_type_nonstatic_implicit_param() { | 156 test_method_inferred_type_nonstatic_implicit_param() { |
157 // TODO(paulberry): fix. | 157 // TODO(paulberry): fix. |
158 } | 158 } |
159 | 159 |
160 @override | 160 @override |
161 test_method_inferred_type_nonstatic_implicit_return() { | |
162 // TODO(paulberry): fix. | |
163 } | |
164 | |
165 @override | |
166 test_setter_inferred_type_nonstatic_implicit_param() { | 161 test_setter_inferred_type_nonstatic_implicit_param() { |
167 // TODO(paulberry): fix. | 162 // TODO(paulberry): fix. |
168 } | 163 } |
169 | 164 |
170 @override | 165 @override |
171 test_setter_inferred_type_nonstatic_implicit_return() { | 166 test_setter_inferred_type_nonstatic_implicit_return() { |
172 // TODO(paulberry): fix. | 167 // TODO(paulberry): fix. |
173 } | 168 } |
174 | 169 |
175 @override | 170 @override |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
215 @override | 210 @override |
216 test_variable_propagated_type_new_reference() { | 211 test_variable_propagated_type_new_reference() { |
217 // TODO(paulberry): fix. | 212 // TODO(paulberry): fix. |
218 } | 213 } |
219 | 214 |
220 @override | 215 @override |
221 test_variable_propagated_type_omit_dynamic() { | 216 test_variable_propagated_type_omit_dynamic() { |
222 // TODO(paulberry): fix. | 217 // TODO(paulberry): fix. |
223 } | 218 } |
224 } | 219 } |
OLD | NEW |