Index: client/html/generated/html/dartium/TouchList.dart |
diff --git a/client/html/generated/html/dartium/TouchList.dart b/client/html/generated/html/dartium/TouchList.dart |
new file mode 100644 |
index 0000000000000000000000000000000000000000..772c82b17f16dad0051f8ca9d8ca8509adbfca0a |
--- /dev/null |
+++ b/client/html/generated/html/dartium/TouchList.dart |
@@ -0,0 +1,102 @@ |
+ |
+class _TouchListImpl extends _DOMTypeBase implements TouchList { |
+ _TouchListImpl._wrap(ptr) : super._wrap(ptr); |
+ |
+ int get length() => _wrap(_ptr.length); |
+ |
+ Touch operator[](int index) => _wrap(_ptr[index]); |
+ |
+ |
+ void operator[]=(int index, Touch value) { |
+ throw new UnsupportedOperationException("Cannot assign element of immutable List."); |
+ } |
+ |
+ void add(Touch value) { |
+ throw new UnsupportedOperationException("Cannot add to immutable List."); |
+ } |
+ |
+ void addLast(Touch value) { |
+ throw new UnsupportedOperationException("Cannot add to immutable List."); |
+ } |
+ |
+ void addAll(Collection<Touch> collection) { |
+ throw new UnsupportedOperationException("Cannot add to immutable List."); |
+ } |
+ |
+ void sort(int compare(Touch a, Touch 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(Touch element, [int start = 0]) { |
+ return _Lists.indexOf(this, element, start, this.length); |
+ } |
+ |
+ int lastIndexOf(Touch 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."); |
+ } |
+ |
+ Touch removeLast() { |
+ throw new UnsupportedOperationException("Cannot removeLast on immutable List."); |
+ } |
+ |
+ Touch last() { |
+ return this[length - 1]; |
+ } |
+ |
+ void forEach(void f(Touch element)) { |
+ _Collections.forEach(this, f); |
+ } |
+ |
+ Collection map(f(Touch element)) { |
+ return _Collections.map(this, [], f); |
+ } |
+ |
+ Collection<Touch> filter(bool f(Touch element)) { |
+ return _Collections.filter(this, new List<Touch>(), f); |
+ } |
+ |
+ bool every(bool f(Touch element)) { |
+ return _Collections.every(this, f); |
+ } |
+ |
+ bool some(bool f(Touch element)) { |
+ return _Collections.some(this, f); |
+ } |
+ |
+ void setRange(int start, int length, List<Touch> 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, [Touch initialValue]) { |
+ throw new UnsupportedOperationException("Cannot insertRange on immutable List."); |
+ } |
+ |
+ List<Touch> getRange(int start, int length) { |
+ throw new NotImplementedException(); |
+ } |
+ |
+ bool isEmpty() { |
+ return length == 0; |
+ } |
+ |
+ Iterator<Touch> iterator() { |
+ return new _FixedSizeListIterator<Touch>(this); |
+ } |
+ |
+ Touch item(int index) { |
+ return _wrap(_ptr.item(_unwrap(index))); |
+ } |
+} |