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

Unified Diff: pkg/analyzer2dart/lib/src/modely.dart

Issue 701083002: Fix warnings in analyzer2dart. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 1 month 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/analyzer2dart/lib/src/modely.dart
diff --git a/pkg/analyzer2dart/lib/src/modely.dart b/pkg/analyzer2dart/lib/src/modely.dart
index 4f89848a31e654951df33bafcfd73c9f2c649a22..c7faa9a294ebea3dc69c411845a825af8f755c21 100644
--- a/pkg/analyzer2dart/lib/src/modely.dart
+++ b/pkg/analyzer2dart/lib/src/modely.dart
@@ -503,7 +503,7 @@ class ClassElementY extends TypeDeclarationElementY
void forEachClassMember(f) => unsupported('forEachClassMember');
@override
- void forEachInstanceField(f, {includeSuperAndInjectedMembers}) {
+ void forEachInstanceField(f, {includeSuperAndInjectedMembers: false}) {
unsupported('forEachInstanceField');
}
@@ -515,7 +515,8 @@ class ClassElementY extends TypeDeclarationElementY
@override
void forEachMember(f,
- {includeBackendMembers, includeSuperAndInjectedMembers}) {
+ {includeBackendMembers: false,
+ includeSuperAndInjectedMembers: false}) {
unsupported('forEachMember');
}
« 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