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

Unified Diff: pkg/dart2js_incremental/lib/library_updater.dart

Issue 836573003: dart2js: fix typo in incremental compilation fix. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 5 years, 11 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/dart2js_incremental/lib/library_updater.dart
diff --git a/pkg/dart2js_incremental/lib/library_updater.dart b/pkg/dart2js_incremental/lib/library_updater.dart
index f70f3a023142af70c671baa04da1fb7768ca0216..f63852f6d72130b1f5a27cbe1fe91579b1b15340 100644
--- a/pkg/dart2js_incremental/lib/library_updater.dart
+++ b/pkg/dart2js_incremental/lib/library_updater.dart
@@ -1258,9 +1258,9 @@ class RemovedFieldUpdate extends RemovalUpdate with JsFeatures {
}
updates.add(
- js.statement('delete #.prototype.#', [prototypeAccess, getterName]));
+ js.statement('delete #.#', [prototypeAccess, getterName]));
updates.add(
- js.statement('delete #.prototype.#', [prototypeAccess, setterName]));
+ js.statement('delete #.#', [prototypeAccess, setterName]));
}
}
« 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