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

Unified Diff: client/html/generated/html/frog/Node.dart

Issue 9663027: Remove generated directories with 100s of files. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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: client/html/generated/html/frog/Node.dart
diff --git a/client/html/generated/html/frog/Node.dart b/client/html/generated/html/frog/Node.dart
deleted file mode 100644
index e7d3afbcfe0ef13b7f2cf11a543b0e680908ee3e..0000000000000000000000000000000000000000
--- a/client/html/generated/html/frog/Node.dart
+++ /dev/null
@@ -1,108 +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.
-
-class _NodeImpl extends _EventTargetImpl implements Node native "*Node" {
- _NodeListImpl get nodes() {
- final list = _childNodes;
- list._parent = this;
- return list;
- }
-
- void set nodes(Collection<Node> value) {
- // Copy list first since we don't want liveness during iteration.
- // TODO(jacobr): there is a better way to do this.
- List copy = new List.from(value);
- text = '';
- for (Node node in copy) {
- _appendChild(node);
- }
- }
-
- // TODO(jacobr): should we throw an exception if parent is already null?
- _NodeImpl remove() {
- if (this.parent != null) {
- this.parent._removeChild(this);
- }
- return this;
- }
-
- _NodeImpl replaceWith(Node otherNode) {
- try {
- this.parent._replaceChild(otherNode, this);
- } catch(var e) {
-
- };
- return this;
- }
-
-
- 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;
-
- _NamedNodeMapImpl get _attributes() native "return this.attributes;";
-
- _NodeListImpl get _childNodes() native "return this.childNodes;";
-
- _NodeImpl get nextNode() native "return this.nextSibling;";
-
- _DocumentImpl get document() => _FixHtmlDocumentReference(_document);
-
- _EventTargetImpl get _document() native "return this.ownerDocument;";
-
- _NodeImpl get parent() native "return this.parentNode;";
-
- _NodeImpl get previousNode() native "return this.previousSibling;";
-
- String get text() native "return this.textContent;";
-
- void set text(String value) native "this.textContent = value;";
-
- _NodeImpl _appendChild(_NodeImpl newChild) native "return this.appendChild(newChild);";
-
- _NodeImpl clone(bool deep) native "return this.cloneNode(deep);";
-
- bool contains(_NodeImpl other) native;
-
- bool hasChildNodes() native;
-
- _NodeImpl insertBefore(_NodeImpl newChild, _NodeImpl refChild) native;
-
- _NodeImpl _removeChild(_NodeImpl oldChild) native "return this.removeChild(oldChild);";
-
- _NodeImpl _replaceChild(_NodeImpl newChild, _NodeImpl oldChild) native "return this.replaceChild(newChild, oldChild);";
-
-}
« no previous file with comments | « client/html/generated/html/frog/NavigatorUserMediaError.dart ('k') | client/html/generated/html/frog/NodeFilter.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698