| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 test_field_formal_param_inferred_type_implicit() { | 51 test_field_formal_param_inferred_type_implicit() { |
| 52 // TODO(paulberry): fix. | 52 // TODO(paulberry): fix. |
| 53 } | 53 } |
| 54 | 54 |
| 55 @override | 55 @override |
| 56 test_field_inferred_type_nonstatic_implicit_initialized() { | 56 test_field_inferred_type_nonstatic_implicit_initialized() { |
| 57 // TODO(paulberry): fix. | 57 // TODO(paulberry): fix. |
| 58 } | 58 } |
| 59 | 59 |
| 60 @override | 60 @override |
| 61 test_field_inferred_type_nonstatic_implicit_uninitialized() { | |
| 62 // TODO(paulberry): fix. | |
| 63 } | |
| 64 | |
| 65 @override | |
| 66 test_field_inferred_type_static_implicit_initialized() { | 61 test_field_inferred_type_static_implicit_initialized() { |
| 67 // TODO(paulberry): fix. | 62 // TODO(paulberry): fix. |
| 68 } | 63 } |
| 69 | 64 |
| 70 @override | 65 @override |
| 71 test_field_propagated_type_final_immediate() { | 66 test_field_propagated_type_final_immediate() { |
| 72 // TODO(paulberry): fix. | 67 // TODO(paulberry): fix. |
| 73 } | 68 } |
| 74 | 69 |
| 75 @override | 70 @override |
| 76 test_fully_linked_references_follow_other_references() { | 71 test_fully_linked_references_follow_other_references() { |
| 77 // TODO(paulberry): fix. | 72 // TODO(paulberry): fix. |
| 78 } | 73 } |
| 79 | 74 |
| 80 @override | 75 @override |
| 81 test_getter_inferred_type_nonstatic_implicit_return() { | |
| 82 // TODO(paulberry): fix. | |
| 83 } | |
| 84 | |
| 85 @override | |
| 86 test_implicit_dependencies_follow_other_dependencies() { | 76 test_implicit_dependencies_follow_other_dependencies() { |
| 87 // TODO(paulberry): fix. | 77 // TODO(paulberry): fix. |
| 88 } | 78 } |
| 89 | 79 |
| 90 @override | 80 @override |
| 91 test_inferred_type_refers_to_bound_type_param() { | 81 test_inferred_type_refers_to_bound_type_param() { |
| 92 // TODO(paulberry): fix. | 82 // TODO(paulberry): fix. |
| 93 } | 83 } |
| 94 | 84 |
| 95 @override | 85 @override |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 test_linked_reference_reuse() { | 136 test_linked_reference_reuse() { |
| 147 // TODO(paulberry): fix. | 137 // TODO(paulberry): fix. |
| 148 } | 138 } |
| 149 | 139 |
| 150 @override | 140 @override |
| 151 test_linked_type_dependency_reuse() { | 141 test_linked_type_dependency_reuse() { |
| 152 // TODO(paulberry): fix. | 142 // TODO(paulberry): fix. |
| 153 } | 143 } |
| 154 | 144 |
| 155 @override | 145 @override |
| 156 test_setter_inferred_type_nonstatic_implicit_param() { | |
| 157 // TODO(paulberry): fix. | |
| 158 } | |
| 159 | |
| 160 @override | |
| 161 test_setter_inferred_type_nonstatic_implicit_return() { | |
| 162 // TODO(paulberry): fix. | |
| 163 } | |
| 164 | |
| 165 @override | |
| 166 test_syntheticFunctionType_genericClosure() { | 146 test_syntheticFunctionType_genericClosure() { |
| 167 // TODO(paulberry): fix. | 147 // TODO(paulberry): fix. |
| 168 } | 148 } |
| 169 | 149 |
| 170 @override | 150 @override |
| 171 test_syntheticFunctionType_genericClosure_inGenericFunction() { | 151 test_syntheticFunctionType_genericClosure_inGenericFunction() { |
| 172 // TODO(paulberry): fix. | 152 // TODO(paulberry): fix. |
| 173 } | 153 } |
| 174 | 154 |
| 175 @override | 155 @override |
| (...skipping 29 matching lines...) Expand all Loading... |
| 205 @override | 185 @override |
| 206 test_variable_propagated_type_new_reference() { | 186 test_variable_propagated_type_new_reference() { |
| 207 // TODO(paulberry): fix. | 187 // TODO(paulberry): fix. |
| 208 } | 188 } |
| 209 | 189 |
| 210 @override | 190 @override |
| 211 test_variable_propagated_type_omit_dynamic() { | 191 test_variable_propagated_type_omit_dynamic() { |
| 212 // TODO(paulberry): fix. | 192 // TODO(paulberry): fix. |
| 213 } | 193 } |
| 214 } | 194 } |
| OLD | NEW |