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

Unified Diff: lib/compiler/implementation/patch_parser.dart

Issue 10824350: Fix some type warnings. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 4 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
Index: lib/compiler/implementation/patch_parser.dart
diff --git a/lib/compiler/implementation/patch_parser.dart b/lib/compiler/implementation/patch_parser.dart
index efae70656beb7e8c864cdf66c568f49c19f0a877..e2a2744e5a724cc2e41d6e923c065fc511b30e54 100644
--- a/lib/compiler/implementation/patch_parser.dart
+++ b/lib/compiler/implementation/patch_parser.dart
@@ -211,7 +211,7 @@ class PatchElementListener extends ElementListener implements PatchListener {
listener.internalErrorOnElement(
element, "Patching non-accessor with accessor");
}
- AbstractField field = existing;
+ AbstractFieldElement field = existing;
ahe 2012/08/20 15:23:16 Anders already fixed this, I think.
if (element.isGetter()) {
existing = field.getter;
} else {

Powered by Google App Engine
This is Rietveld 408576698