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

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

Issue 2354383002: Fix for test of linking with unused type parameter. (Closed)
Patch Set: 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:test_reflective_loader/test_reflective_loader.dart'; 7 import 'package:test_reflective_loader/test_reflective_loader.dart';
8 import 'package:unittest/unittest.dart'; 8 import 'package:unittest/unittest.dart';
9 9
10 import 'summarize_ast_test.dart'; 10 import 'summarize_ast_test.dart';
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 @failingTest 122 @failingTest
123 test_syntheticFunctionType_inGenericClass() { 123 test_syntheticFunctionType_inGenericClass() {
124 super.test_syntheticFunctionType_inGenericClass(); 124 super.test_syntheticFunctionType_inGenericClass();
125 } 125 }
126 126
127 @override 127 @override
128 @failingTest 128 @failingTest
129 test_syntheticFunctionType_inGenericFunction() { 129 test_syntheticFunctionType_inGenericFunction() {
130 super.test_syntheticFunctionType_inGenericFunction(); 130 super.test_syntheticFunctionType_inGenericFunction();
131 } 131 }
132
133 @override
134 @failingTest
135 test_unused_type_parameter() {
136 super.test_unused_type_parameter();
137 }
138 } 132 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698