| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 test_fully_linked_references_follow_other_references() { | 71 test_fully_linked_references_follow_other_references() { |
| 72 // TODO(paulberry): fix. | 72 // TODO(paulberry): fix. |
| 73 } | 73 } |
| 74 | 74 |
| 75 @override | 75 @override |
| 76 test_implicit_dependencies_follow_other_dependencies() { | 76 test_implicit_dependencies_follow_other_dependencies() { |
| 77 // TODO(paulberry): fix. | 77 // TODO(paulberry): fix. |
| 78 } | 78 } |
| 79 | 79 |
| 80 @override | 80 @override |
| 81 test_inferred_type_refers_to_bound_type_param() { | |
| 82 // TODO(paulberry): fix. | |
| 83 } | |
| 84 | |
| 85 @override | |
| 86 test_inferred_type_refers_to_function_typed_parameter_type_generic_class() { | |
| 87 // TODO(paulberry): fix. | |
| 88 } | |
| 89 | |
| 90 @override | |
| 91 test_inferred_type_refers_to_function_typed_parameter_type_other_lib() { | |
| 92 // TODO(paulberry): fix. | |
| 93 } | |
| 94 | |
| 95 @override | |
| 96 test_inferred_type_refers_to_method_function_typed_parameter_type() { | |
| 97 // TODO(paulberry): fix. | |
| 98 } | |
| 99 | |
| 100 @override | |
| 101 test_inferred_type_refers_to_setter_function_typed_parameter_type() { | |
| 102 // TODO(paulberry): fix. | |
| 103 } | |
| 104 | |
| 105 @override | |
| 106 test_initializer_executable_with_bottom_return_type() { | 81 test_initializer_executable_with_bottom_return_type() { |
| 107 // TODO(paulberry): fix. | 82 // TODO(paulberry): fix. |
| 108 } | 83 } |
| 109 | 84 |
| 110 @override | 85 @override |
| 111 test_initializer_executable_with_imported_return_type() { | 86 test_initializer_executable_with_imported_return_type() { |
| 112 // TODO(paulberry): fix. | 87 // TODO(paulberry): fix. |
| 113 } | 88 } |
| 114 | 89 |
| 115 @override | 90 @override |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 @override | 160 @override |
| 186 test_variable_propagated_type_new_reference() { | 161 test_variable_propagated_type_new_reference() { |
| 187 // TODO(paulberry): fix. | 162 // TODO(paulberry): fix. |
| 188 } | 163 } |
| 189 | 164 |
| 190 @override | 165 @override |
| 191 test_variable_propagated_type_omit_dynamic() { | 166 test_variable_propagated_type_omit_dynamic() { |
| 192 // TODO(paulberry): fix. | 167 // TODO(paulberry): fix. |
| 193 } | 168 } |
| 194 } | 169 } |
| OLD | NEW |