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

Unified Diff: client/dom/generated/src/frog/Uint8Array.dart

Issue 9290010: Revert "Implement List<T> operations on dom types via manual mixins." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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 | « client/dom/generated/src/frog/Uint32Array.dart ('k') | client/dom/scripts/dartgenerator.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/generated/src/frog/Uint8Array.dart
diff --git a/client/dom/generated/src/frog/Uint8Array.dart b/client/dom/generated/src/frog/Uint8Array.dart
index 01d89d8824cb8426482b396171116343f0cc1be0..3e6e3978f0f1299a0d4bbda4c5da304e72ea61dd 100644
--- a/client/dom/generated/src/frog/Uint8Array.dart
+++ b/client/dom/generated/src/frog/Uint8Array.dart
@@ -13,76 +13,9 @@ class Uint8ArrayJs extends ArrayBufferViewJs implements Uint8Array, List<int> na
int get length() native "return this.length;";
- int operator[](int index) native "return this[index];";
+ int operator[](int index) native;
- void operator[]=(int index, int value) native "this[index] = value";
- // -- start List<int> mixins.
- // int is the element type.
-
- // From Iterable<int>:
-
- Iterator<int> iterator() {
- // Note: NodeLists are not fixed size. And most probably length shouldn't
- // be cached in both iterator _and_ forEach method. For now caching it
- // for consistency.
- return new _FixedSizeListIterator<int>(this);
- }
-
- // From Collection<int>:
-
- void add(int value) {
- throw new UnsupportedOperationException("Cannot add to immutable List.");
- }
-
- void addLast(int value) {
- throw new UnsupportedOperationException("Cannot add to immutable List.");
- }
-
- void addAll(Collection<int> collection) {
- throw new UnsupportedOperationException("Cannot add to immutable List.");
- }
-
- void forEach(void f(int element)) => _Collections.forEach(this, f);
-
- Collection map(f(int element)) => _Collections.map(this, [], f);
-
- Collection<int> filter(bool f(int element)) =>
- _Collections.filter(this, <int>[], f);
-
- bool every(bool f(int element)) => _Collections.every(this, f);
-
- bool some(bool f(int element)) => _Collections.some(this, f);
-
- bool isEmpty() => this.length == 0;
-
- // From List<int>:
-
- void sort(int compare(int a, int b)) {
- throw new UnsupportedOperationException("Cannot sort immutable List.");
- }
-
- int indexOf(int element, [int start = 0]) =>
- _Lists.indexOf(this, element, start, this.length);
-
- int lastIndexOf(int element, [int start = 0]) =>
- _Lists.lastIndexOf(this, element, start);
-
- int last() => this[length - 1];
-
- // FIXME: implement thesee.
- void setRange(int start, int length, List<int> from, [int startFrom]) {
- throw new UnsupportedOperationException("Cannot setRange on immutable List.");
- }
- void removeRange(int start, int length) {
- throw new UnsupportedOperationException("Cannot removeRange on immutable List.");
- }
- void insertRange(int start, int length, [int initialValue]) {
- throw new UnsupportedOperationException("Cannot insertRange on immutable List.");
- }
- List<int> getRange(int start, int length) =>
- _Lists.getRange(this, start, length, <int>[]);
-
- // -- end List<int> mixins.
+ void operator[]=(int index, int value) native;
void setElements(Object array, [int offset = null]) native;
« no previous file with comments | « client/dom/generated/src/frog/Uint32Array.dart ('k') | client/dom/scripts/dartgenerator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698