| 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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 test_linked_reference_reuse() { | 146 test_linked_reference_reuse() { |
| 147 // TODO(paulberry): fix. | 147 // TODO(paulberry): fix. |
| 148 } | 148 } |
| 149 | 149 |
| 150 @override | 150 @override |
| 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() { | |
| 157 // TODO(paulberry): fix. | |
| 158 } | |
| 159 | |
| 160 @override | |
| 161 test_setter_inferred_type_nonstatic_implicit_param() { | 156 test_setter_inferred_type_nonstatic_implicit_param() { |
| 162 // TODO(paulberry): fix. | 157 // TODO(paulberry): fix. |
| 163 } | 158 } |
| 164 | 159 |
| 165 @override | 160 @override |
| 166 test_setter_inferred_type_nonstatic_implicit_return() { | 161 test_setter_inferred_type_nonstatic_implicit_return() { |
| 167 // TODO(paulberry): fix. | 162 // TODO(paulberry): fix. |
| 168 } | 163 } |
| 169 | 164 |
| 170 @override | 165 @override |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 @override | 205 @override |
| 211 test_variable_propagated_type_new_reference() { | 206 test_variable_propagated_type_new_reference() { |
| 212 // TODO(paulberry): fix. | 207 // TODO(paulberry): fix. |
| 213 } | 208 } |
| 214 | 209 |
| 215 @override | 210 @override |
| 216 test_variable_propagated_type_omit_dynamic() { | 211 test_variable_propagated_type_omit_dynamic() { |
| 217 // TODO(paulberry): fix. | 212 // TODO(paulberry): fix. |
| 218 } | 213 } |
| 219 } | 214 } |
| OLD | NEW |