Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(177)

Side by Side Diff: pkg/analyzer/test/src/summary/summarize_ast_strong_test.dart

Issue 2288223003: Don't perform final fields and top-level variables type propagation. (Closed)
Patch Set: Rewrite 'reuse' tests using 'inferredTypeSlot'. Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 30 matching lines...) Expand all
41 } 41 }
42 42
43 @override 43 @override
44 @failingTest 44 @failingTest
45 test_closure_executable_with_unimported_return_type() { 45 test_closure_executable_with_unimported_return_type() {
46 super.test_closure_executable_with_unimported_return_type(); 46 super.test_closure_executable_with_unimported_return_type();
47 } 47 }
48 48
49 @override 49 @override
50 @failingTest 50 @failingTest
51 test_field_propagated_type_final_immediate() {
52 super.test_field_propagated_type_final_immediate();
53 }
54
55 @override
56 @failingTest
57 test_fully_linked_references_follow_other_references() {
58 super.test_fully_linked_references_follow_other_references();
59 }
60
61 @override
62 @failingTest
63 test_implicit_dependencies_follow_other_dependencies() { 51 test_implicit_dependencies_follow_other_dependencies() {
64 super.test_implicit_dependencies_follow_other_dependencies(); 52 super.test_implicit_dependencies_follow_other_dependencies();
65 } 53 }
66 54
67 @override 55 @override
68 @failingTest 56 @failingTest
69 test_inferred_type_refers_to_function_typed_param_of_typedef() { 57 test_inferred_type_refers_to_function_typed_param_of_typedef() {
70 super.test_inferred_type_refers_to_function_typed_param_of_typedef(); 58 super.test_inferred_type_refers_to_function_typed_param_of_typedef();
71 } 59 }
72 60
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 } 101 }
114 102
115 @override 103 @override
116 @failingTest 104 @failingTest
117 test_initializer_executable_with_unimported_return_type() { 105 test_initializer_executable_with_unimported_return_type() {
118 super.test_initializer_executable_with_unimported_return_type(); 106 super.test_initializer_executable_with_unimported_return_type();
119 } 107 }
120 108
121 @override 109 @override
122 @failingTest 110 @failingTest
123 test_linked_reference_reuse() {
124 super.test_linked_reference_reuse();
125 }
126
127 @override
128 @failingTest
129 test_linked_type_dependency_reuse() {
130 super.test_linked_type_dependency_reuse();
131 }
132
133 @override
134 @failingTest
135 test_syntheticFunctionType_genericClosure() { 111 test_syntheticFunctionType_genericClosure() {
136 super.test_syntheticFunctionType_genericClosure(); 112 super.test_syntheticFunctionType_genericClosure();
137 } 113 }
138 114
139 @override 115 @override
140 @failingTest 116 @failingTest
141 test_syntheticFunctionType_genericClosure_inGenericFunction() { 117 test_syntheticFunctionType_genericClosure_inGenericFunction() {
142 super.test_syntheticFunctionType_genericClosure_inGenericFunction(); 118 super.test_syntheticFunctionType_genericClosure_inGenericFunction();
143 } 119 }
144 120
145 @override 121 @override
146 @failingTest 122 @failingTest
147 test_syntheticFunctionType_inGenericClass() { 123 test_syntheticFunctionType_inGenericClass() {
148 super.test_syntheticFunctionType_inGenericClass(); 124 super.test_syntheticFunctionType_inGenericClass();
149 } 125 }
150 126
151 @override 127 @override
152 @failingTest 128 @failingTest
153 test_syntheticFunctionType_inGenericFunction() { 129 test_syntheticFunctionType_inGenericFunction() {
154 super.test_syntheticFunctionType_inGenericFunction(); 130 super.test_syntheticFunctionType_inGenericFunction();
155 } 131 }
156 132
157 @override 133 @override
158 @failingTest 134 @failingTest
159 test_syntheticFunctionType_noArguments() {
160 super.test_syntheticFunctionType_noArguments();
161 }
162
163 @override
164 @failingTest
165 test_syntheticFunctionType_withArguments() {
166 super.test_syntheticFunctionType_withArguments();
167 }
168
169 @override
170 @failingTest
171 test_unused_type_parameter() { 135 test_unused_type_parameter() {
172 super.test_unused_type_parameter(); 136 super.test_unused_type_parameter();
173 } 137 }
174
175 @override
176 @failingTest
177 test_variable_propagated_type_final_immediate() {
178 super.test_variable_propagated_type_final_immediate();
179 }
180
181 @override
182 @failingTest
183 test_variable_propagated_type_new_reference() {
184 super.test_variable_propagated_type_new_reference();
185 }
186
187 @override
188 @failingTest
189 test_variable_propagated_type_omit_dynamic() {
190 super.test_variable_propagated_type_omit_dynamic();
191 }
192 } 138 }
OLDNEW
« no previous file with comments | « pkg/analyzer/test/src/context/context_test.dart ('k') | pkg/analyzer/test/src/summary/summarize_ast_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698