| Index: client/html/generated/html/interface/Node.dart
|
| diff --git a/client/html/generated/html/interface/Node.dart b/client/html/generated/html/interface/Node.dart
|
| deleted file mode 100644
|
| index 306bd255c590130cfa648a0142c39e3bd2970fc9..0000000000000000000000000000000000000000
|
| --- a/client/html/generated/html/interface/Node.dart
|
| +++ /dev/null
|
| @@ -1,81 +0,0 @@
|
| -// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| -// for details. All rights reserved. Use of this source code is governed by a
|
| -// BSD-style license that can be found in the LICENSE file.
|
| -
|
| -// WARNING: Do not edit - generated code.
|
| -
|
| -interface Node extends EventTarget {
|
| - NodeList get nodes();
|
| -
|
| - void set nodes(Collection<Node> value);
|
| -
|
| - Node replaceWith(Node otherNode);
|
| -
|
| - Node remove();
|
| -
|
| -
|
| - static final int ATTRIBUTE_NODE = 2;
|
| -
|
| - static final int CDATA_SECTION_NODE = 4;
|
| -
|
| - static final int COMMENT_NODE = 8;
|
| -
|
| - static final int DOCUMENT_FRAGMENT_NODE = 11;
|
| -
|
| - static final int DOCUMENT_NODE = 9;
|
| -
|
| - static final int DOCUMENT_POSITION_CONTAINED_BY = 0x10;
|
| -
|
| - static final int DOCUMENT_POSITION_CONTAINS = 0x08;
|
| -
|
| - static final int DOCUMENT_POSITION_DISCONNECTED = 0x01;
|
| -
|
| - static final int DOCUMENT_POSITION_FOLLOWING = 0x04;
|
| -
|
| - static final int DOCUMENT_POSITION_IMPLEMENTATION_SPECIFIC = 0x20;
|
| -
|
| - static final int DOCUMENT_POSITION_PRECEDING = 0x02;
|
| -
|
| - static final int DOCUMENT_TYPE_NODE = 10;
|
| -
|
| - static final int ELEMENT_NODE = 1;
|
| -
|
| - static final int ENTITY_NODE = 6;
|
| -
|
| - static final int ENTITY_REFERENCE_NODE = 5;
|
| -
|
| - static final int NOTATION_NODE = 12;
|
| -
|
| - static final int PROCESSING_INSTRUCTION_NODE = 7;
|
| -
|
| - static final int TEXT_NODE = 3;
|
| -
|
| - final NamedNodeMap _attributes;
|
| -
|
| - final NodeList _childNodes;
|
| -
|
| - final Node nextNode;
|
| -
|
| - final Document document;
|
| -
|
| - final Node parent;
|
| -
|
| - final Node previousNode;
|
| -
|
| - String text;
|
| -
|
| - Node _appendChild(Node newChild);
|
| -
|
| - Node clone(bool deep);
|
| -
|
| - bool contains(Node other);
|
| -
|
| - bool hasChildNodes();
|
| -
|
| - Node insertBefore(Node newChild, Node refChild);
|
| -
|
| - Node _removeChild(Node oldChild);
|
| -
|
| - Node _replaceChild(Node newChild, Node oldChild);
|
| -
|
| -}
|
|
|