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