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

Unified Diff: lib/dom/frog/dom_frog.dart

Issue 10388084: Better support for the case of typed arrays inheriting from other typed arrays. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebaseline Created 8 years, 7 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/dom/frog/dom_frog.dart
diff --git a/lib/dom/frog/dom_frog.dart b/lib/dom/frog/dom_frog.dart
index 40da1927968c00d12e746aed17de827c2787a0c8..733a6cc9c5fe4eea458b48b5db417fd6d49ebe0f 100644
--- a/lib/dom/frog/dom_frog.dart
+++ b/lib/dom/frog/dom_frog.dart
@@ -10422,105 +10422,14 @@ class _Uint8ArrayJs extends _ArrayBufferViewJs implements Uint8Array, List<int>
_Uint8ArrayJs subarray(int start, [int end = null]) native;
}
-class _Uint8ClampedArrayJs extends _Uint8ArrayJs implements Uint8ClampedArray, List<int> native "*Uint8ClampedArray" {
+class _Uint8ClampedArrayJs extends _Uint8ArrayJs implements Uint8ClampedArray native "*Uint8ClampedArray" {
// Use implementation from Uint8Array.
// final int length;
- int operator[](int index) native "return this[index];";
-
- 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]) {
- if (start === null) start = length - 1;
- return _Lists.lastIndexOf(this, element, start);
- }
-
- int last() => this[length - 1];
-
- int removeLast() {
- throw new UnsupportedOperationException("Cannot removeLast on immutable List.");
- }
-
- // FIXME: implement these.
- void setRange(int start, int rangeLength, List<int> from, [int startFrom]) {
- throw new UnsupportedOperationException("Cannot setRange on immutable List.");
- }
-
- void removeRange(int start, int rangeLength) {
- throw new UnsupportedOperationException("Cannot removeRange on immutable List.");
- }
-
- void insertRange(int start, int rangeLength, [int initialValue]) {
- throw new UnsupportedOperationException("Cannot insertRange on immutable List.");
- }
-
- List<int> getRange(int start, int rangeLength) =>
- _Lists.getRange(this, start, rangeLength, <int>[]);
-
- // -- end List<int> mixins.
-
void setElements(Object array, [int offset = null]) native 'set';
_Uint8ClampedArrayJs subarray(int start, [int end = null]) native;
-
- // From ArrayBufferView
-
- // Use implementation from ArrayBufferView.
- // final _ArrayBufferJs buffer;
-
- // Use implementation from ArrayBufferView.
- // final int byteLength;
-
- // Use implementation from ArrayBufferView.
- // final int byteOffset;
}
class _ValidityStateJs extends _DOMTypeJs implements ValidityState native "*ValidityState" {
@@ -22535,7 +22444,7 @@ interface Uint8Array extends ArrayBufferView, List<int> default _TypedArrayFacto
// WARNING: Do not edit - generated code.
-interface Uint8ClampedArray extends Uint8Array, List<int>, ArrayBufferView default _TypedArrayFactoryProvider {
+interface Uint8ClampedArray extends Uint8Array default _TypedArrayFactoryProvider {
Uint8ClampedArray(int length);
« no previous file with comments | « lib/dom/dom.dart ('k') | lib/dom/idl/dart/dart.idl » ('j') | lib/dom/scripts/generator.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698