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

Unified Diff: client/dom/generated/src/frog/Float32Array.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
Index: client/dom/generated/src/frog/Float32Array.dart
diff --git a/client/dom/generated/src/frog/Float32Array.dart b/client/dom/generated/src/frog/Float32Array.dart
index 9b25ba071834a914005963f7d756820873f2ab33..308b8de9714230b5df62d2346269044d9dff300b 100644
--- a/client/dom/generated/src/frog/Float32Array.dart
+++ b/client/dom/generated/src/frog/Float32Array.dart
@@ -13,76 +13,9 @@ class Float32ArrayJs extends ArrayBufferViewJs implements Float32Array, List<num
int get length() native "return this.length;";
- num operator[](int index) native "return this[index];";
+ num operator[](int index) native;
- void operator[]=(int index, num value) native "this[index] = value";
- // -- start List<num> mixins.
- // num is the element type.
-
- // From Iterable<num>:
-
- Iterator<num> 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<num>(this);
- }
-
- // From Collection<num>:
-
- void add(num value) {
- throw new UnsupportedOperationException("Cannot add to immutable List.");
- }
-
- void addLast(num value) {
- throw new UnsupportedOperationException("Cannot add to immutable List.");
- }
-
- void addAll(Collection<num> collection) {
- throw new UnsupportedOperationException("Cannot add to immutable List.");
- }
-
- void forEach(void f(num element)) => _Collections.forEach(this, f);
-
- Collection map(f(num element)) => _Collections.map(this, [], f);
-
- Collection<num> filter(bool f(num element)) =>
- _Collections.filter(this, <num>[], f);
-
- bool every(bool f(num element)) => _Collections.every(this, f);
-
- bool some(bool f(num element)) => _Collections.some(this, f);
-
- bool isEmpty() => this.length == 0;
-
- // From List<num>:
-
- void sort(int compare(num a, num b)) {
- throw new UnsupportedOperationException("Cannot sort immutable List.");
- }
-
- int indexOf(num element, [int start = 0]) =>
- _Lists.indexOf(this, element, start, this.length);
-
- int lastIndexOf(num element, [int start = 0]) =>
- _Lists.lastIndexOf(this, element, start);
-
- num last() => this[length - 1];
-
- // FIXME: implement thesee.
- void setRange(int start, int length, List<num> 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, [num initialValue]) {
- throw new UnsupportedOperationException("Cannot insertRange on immutable List.");
- }
- List<num> getRange(int start, int length) =>
- _Lists.getRange(this, start, length, <num>[]);
-
- // -- end List<num> mixins.
+ void operator[]=(int index, num value) native;
void setElements(Object array, [int offset = null]) native;
« no previous file with comments | « client/dom/generated/src/frog/CanvasPixelArray.dart ('k') | client/dom/generated/src/frog/Float64Array.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698