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

Unified Diff: tools/dom/src/WrappedList.dart

Issue 1327083002: Revert "Patched in Dartium JsInterop" (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 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 | « tools/dom/src/Validators.dart ('k') | tools/dom/src/_chrome/app_runtime.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dom/src/WrappedList.dart
diff --git a/tools/dom/src/WrappedList.dart b/tools/dom/src/WrappedList.dart
index fd3ca952afab0e1ffdf723482ceb75c971742975..375ce7c86412d2a190b695d7e449e52e7d972017 100644
--- a/tools/dom/src/WrappedList.dart
+++ b/tools/dom/src/WrappedList.dart
@@ -34,7 +34,7 @@ class _WrappedList<E extends Node> extends ListBase<E>
void operator []=(int index, E value) { _list[index] = value; }
- set length(int newLength) { _list.length = newLength; }
+ void set length(int newLength) { _list.length = newLength; }
void sort([int compare(E a, E b)]) { _list.sort(compare); }
« no previous file with comments | « tools/dom/src/Validators.dart ('k') | tools/dom/src/_chrome/app_runtime.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698