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

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

Issue 1954203002: Keep all type arguments in summaries - dynamic or not. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 7 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';
11 11
12 main() { 12 main() {
13 groupSep = ' | '; 13 groupSep = ' | ';
14 runReflectiveTests(LinkedSummarizeAstStrongTest); 14 runReflectiveTests(LinkedSummarizeAstStrongTest);
15 } 15 }
16 16
17 /** 17 /**
18 * Override of [LinkedSummarizeAstTest] which uses strong mode. 18 * Override of [LinkedSummarizeAstTest] which uses strong mode.
19 */ 19 */
20 @reflectiveTest 20 @reflectiveTest
21 class LinkedSummarizeAstStrongTest extends LinkedSummarizeAstTest { 21 class LinkedSummarizeAstStrongTest extends LinkedSummarizeAstTest {
22 @override 22 @override
23 bool get elementMode => false;
24
25 @override
23 bool get strongMode => true; 26 bool get strongMode => true;
24 27
25 @override 28 @override
26 @failingTest 29 @failingTest
27 test_bottom_reference_shared() { 30 test_bottom_reference_shared() {
28 super.test_bottom_reference_shared(); 31 super.test_bottom_reference_shared();
29 } 32 }
30 33
31 @override 34 @override
32 @failingTest 35 @failingTest
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
171 test_variable_propagated_type_new_reference() { 174 test_variable_propagated_type_new_reference() {
172 super.test_variable_propagated_type_new_reference(); 175 super.test_variable_propagated_type_new_reference();
173 } 176 }
174 177
175 @override 178 @override
176 @failingTest 179 @failingTest
177 test_variable_propagated_type_omit_dynamic() { 180 test_variable_propagated_type_omit_dynamic() {
178 super.test_variable_propagated_type_omit_dynamic(); 181 super.test_variable_propagated_type_omit_dynamic();
179 } 182 }
180 } 183 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698