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

Unified Diff: pkg/analyzer/test/src/summary/resynthesize_common.dart

Issue 2359953002: Fix 'compareTypeParameterElements' to use TypeParameterElement, not Impl. (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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/analyzer/test/src/summary/resynthesize_common.dart
diff --git a/pkg/analyzer/test/src/summary/resynthesize_common.dart b/pkg/analyzer/test/src/summary/resynthesize_common.dart
index ba8bb27484cb473ec79e6a76f77fdaa84a33af54..aeebef56cdca03312352a3af89f60571ac764202 100644
--- a/pkg/analyzer/test/src/summary/resynthesize_common.dart
+++ b/pkg/analyzer/test/src/summary/resynthesize_common.dart
@@ -984,8 +984,8 @@ abstract class AbstractResynthesizeTest extends AbstractSingleUnitTest {
expect(resynthesized.name, original.name, reason: desc);
}
- void compareTypeParameterElements(TypeParameterElementImpl resynthesized,
- TypeParameterElementImpl original, String desc) {
+ void compareTypeParameterElements(TypeParameterElement resynthesized,
+ TypeParameterElement original, String desc) {
compareElements(resynthesized, original, desc);
compareTypes(resynthesized.type, original.type, desc);
compareTypes(resynthesized.bound, original.bound, '$desc bound');
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698