| 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 65 } | 65 } |
| 66 | 66 |
| 67 @override | 67 @override |
| 68 @failingTest | 68 @failingTest |
| 69 test_inferred_type_refers_to_function_typed_param_of_typedef() { | 69 test_inferred_type_refers_to_function_typed_param_of_typedef() { |
| 70 super.test_inferred_type_refers_to_function_typed_param_of_typedef(); | 70 super.test_inferred_type_refers_to_function_typed_param_of_typedef(); |
| 71 } | 71 } |
| 72 | 72 |
| 73 @override | 73 @override |
| 74 @failingTest | 74 @failingTest |
| 75 test_inferred_type_refers_to_nested_function_typed_param_of_typedef() { |
| 76 super.test_inferred_type_refers_to_nested_function_typed_param_of_typedef(); |
| 77 } |
| 78 |
| 79 @override |
| 80 @failingTest |
| 81 test_inferred_type_refers_to_nested_function_typed_param_of_typedef_named() { |
| 82 super |
| 83 .test_inferred_type_refers_to_nested_function_typed_param_of_typedef_nam
ed(); |
| 84 } |
| 85 |
| 86 @override |
| 87 @failingTest |
| 75 test_initializer_executable_with_bottom_return_type() { | 88 test_initializer_executable_with_bottom_return_type() { |
| 76 super.test_initializer_executable_with_bottom_return_type(); | 89 super.test_initializer_executable_with_bottom_return_type(); |
| 77 } | 90 } |
| 78 | 91 |
| 79 @override | 92 @override |
| 80 @failingTest | 93 @failingTest |
| 81 test_initializer_executable_with_imported_return_type() { | 94 test_initializer_executable_with_imported_return_type() { |
| 82 super.test_initializer_executable_with_imported_return_type(); | 95 super.test_initializer_executable_with_imported_return_type(); |
| 83 } | 96 } |
| 84 | 97 |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 test_variable_propagated_type_new_reference() { | 184 test_variable_propagated_type_new_reference() { |
| 172 super.test_variable_propagated_type_new_reference(); | 185 super.test_variable_propagated_type_new_reference(); |
| 173 } | 186 } |
| 174 | 187 |
| 175 @override | 188 @override |
| 176 @failingTest | 189 @failingTest |
| 177 test_variable_propagated_type_omit_dynamic() { | 190 test_variable_propagated_type_omit_dynamic() { |
| 178 super.test_variable_propagated_type_omit_dynamic(); | 191 super.test_variable_propagated_type_omit_dynamic(); |
| 179 } | 192 } |
| 180 } | 193 } |
| OLD | NEW |