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

Unified Diff: client/dom/generated/src/wrapping/_Int32ArrayWrappingImplementation.dart

Issue 8889001: Implement typed array constructors. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: comment Created 9 years 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/wrapping/_Int32ArrayWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_Int32ArrayWrappingImplementation.dart b/client/dom/generated/src/wrapping/_Int32ArrayWrappingImplementation.dart
index 4a1b6a32e0d79886884c3f6d60c031f539608a2a..6b72e436b3a85f159eb960bb3e7a9d9955637c57 100644
--- a/client/dom/generated/src/wrapping/_Int32ArrayWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_Int32ArrayWrappingImplementation.dart
@@ -14,6 +14,95 @@ class _Int32ArrayWrappingImplementation extends _ArrayBufferViewWrappingImplemen
int get length() { return _get_length(this); }
static int _get_length(var _this) native;
+ int operator[](int index) { return _index(this, index); }
+ static int _index(var _this, int index) native;
+
+ void operator[]=(int index, int value) {
+ return _set_index(this, index, value);
+ }
+ static _set_index(_this, index, value) native;
+
+ 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 sort(int compare(int a, int b)) {
+ throw new UnsupportedOperationException("Cannot sort immutable List.");
+ }
+
+ void copyFrom(List<Object> src, int srcStart, int dstStart, int count) {
+ throw new UnsupportedOperationException("This object is immutable.");
+ }
+
+ int indexOf(int element, [int start = 0]) {
+ return _Lists.indexOf(this, element, start, this.length);
+ }
+
+ int lastIndexOf(int element, [int start = null]) {
+ if (start === null) start = length - 1;
+ return _Lists.lastIndexOf(this, element, start);
+ }
+
+ int clear() {
+ throw new UnsupportedOperationException("Cannot clear immutable List.");
+ }
+
+ int removeLast() {
+ throw new UnsupportedOperationException("Cannot removeLast on immutable List.");
+ }
+
+ int last() {
+ return this[length - 1];
+ }
+
+ void forEach(void f(int element)) {
+ _Collections.forEach(this, f);
+ }
+
+ Collection<int> filter(bool f(int element)) {
+ return _Collections.filter(this, new List<int>(), f);
+ }
+
+ bool every(bool f(int element)) {
+ return _Collections.every(this, f);
+ }
+
+ bool some(bool f(int element)) {
+ return _Collections.some(this, f);
+ }
+
+ 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) {
+ throw new NotImplementedException();
+ }
+
+ bool isEmpty() {
+ return length == 0;
+ }
+
+ Iterator<int> iterator() {
+ return new _FixedSizeListIterator<int>(this);
+ }
+
Int32Array subarray(int start, [int end = null]) {
if (end === null) {
return _subarray(this, start);

Powered by Google App Engine
This is Rietveld 408576698