| 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 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 test_syntheticFunctionType_noArguments() { | 131 test_syntheticFunctionType_noArguments() { |
| 132 // TODO(paulberry): fix. | 132 // TODO(paulberry): fix. |
| 133 } | 133 } |
| 134 | 134 |
| 135 @override | 135 @override |
| 136 test_syntheticFunctionType_withArguments() { | 136 test_syntheticFunctionType_withArguments() { |
| 137 // TODO(paulberry): fix. | 137 // TODO(paulberry): fix. |
| 138 } | 138 } |
| 139 | 139 |
| 140 @override | 140 @override |
| 141 test_unused_type_parameter() { |
| 142 // TODO(paulberry): fix. |
| 143 } |
| 144 |
| 145 @override |
| 141 test_variable_inferred_type_implicit_initialized() { | 146 test_variable_inferred_type_implicit_initialized() { |
| 142 // TODO(paulberry): fix. | 147 // TODO(paulberry): fix. |
| 143 } | 148 } |
| 144 | 149 |
| 145 @override | 150 @override |
| 146 test_variable_propagated_type_final_immediate() { | 151 test_variable_propagated_type_final_immediate() { |
| 147 // TODO(paulberry): fix. | 152 // TODO(paulberry): fix. |
| 148 } | 153 } |
| 149 | 154 |
| 150 @override | 155 @override |
| 151 test_variable_propagated_type_new_reference() { | 156 test_variable_propagated_type_new_reference() { |
| 152 // TODO(paulberry): fix. | 157 // TODO(paulberry): fix. |
| 153 } | 158 } |
| 154 | 159 |
| 155 @override | 160 @override |
| 156 test_variable_propagated_type_omit_dynamic() { | 161 test_variable_propagated_type_omit_dynamic() { |
| 157 // TODO(paulberry): fix. | 162 // TODO(paulberry): fix. |
| 158 } | 163 } |
| 159 } | 164 } |
| OLD | NEW |