| 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_strong_test; | 5 library analyzer.test.src.summary.summarize_ast_strong_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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 } | 59 } |
| 60 | 60 |
| 61 @override | 61 @override |
| 62 @failingTest | 62 @failingTest |
| 63 test_implicit_dependencies_follow_other_dependencies() { | 63 test_implicit_dependencies_follow_other_dependencies() { |
| 64 super.test_implicit_dependencies_follow_other_dependencies(); | 64 super.test_implicit_dependencies_follow_other_dependencies(); |
| 65 } | 65 } |
| 66 | 66 |
| 67 @override | 67 @override |
| 68 @failingTest | 68 @failingTest |
| 69 test_inferred_type_refers_to_function_typed_param_of_typedef() { |
| 70 super.test_inferred_type_refers_to_function_typed_param_of_typedef(); |
| 71 } |
| 72 |
| 73 @override |
| 74 @failingTest |
| 69 test_initializer_executable_with_bottom_return_type() { | 75 test_initializer_executable_with_bottom_return_type() { |
| 70 super.test_initializer_executable_with_bottom_return_type(); | 76 super.test_initializer_executable_with_bottom_return_type(); |
| 71 } | 77 } |
| 72 | 78 |
| 73 @override | 79 @override |
| 74 @failingTest | 80 @failingTest |
| 75 test_initializer_executable_with_imported_return_type() { | 81 test_initializer_executable_with_imported_return_type() { |
| 76 super.test_initializer_executable_with_imported_return_type(); | 82 super.test_initializer_executable_with_imported_return_type(); |
| 77 } | 83 } |
| 78 | 84 |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 test_variable_propagated_type_new_reference() { | 171 test_variable_propagated_type_new_reference() { |
| 166 super.test_variable_propagated_type_new_reference(); | 172 super.test_variable_propagated_type_new_reference(); |
| 167 } | 173 } |
| 168 | 174 |
| 169 @override | 175 @override |
| 170 @failingTest | 176 @failingTest |
| 171 test_variable_propagated_type_omit_dynamic() { | 177 test_variable_propagated_type_omit_dynamic() { |
| 172 super.test_variable_propagated_type_omit_dynamic(); | 178 super.test_variable_propagated_type_omit_dynamic(); |
| 173 } | 179 } |
| 174 } | 180 } |
| OLD | NEW |