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

Unified Diff: client/dom/generated/src/interface/Node.dart

Issue 9341007: Use 'field' syntax in dart:dom interfaces. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 8 years, 10 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/dom/generated/src/interface/Node.dart
diff --git a/client/dom/generated/src/interface/Node.dart b/client/dom/generated/src/interface/Node.dart
index 86be5e149721c99a6d81d506b574f0b2e457f118..fff2d95baaaf96f54373cfee40903a169ef5afcb 100644
--- a/client/dom/generated/src/interface/Node.dart
+++ b/client/dom/generated/src/interface/Node.dart
@@ -42,45 +42,39 @@ interface Node extends EventTarget {
static final int TEXT_NODE = 3;
- NamedNodeMap get attributes();
+ final NamedNodeMap attributes;
- String get baseURI();
+ final String baseURI;
- NodeList get childNodes();
+ final NodeList childNodes;
- Node get firstChild();
+ final Node firstChild;
- Node get lastChild();
+ final Node lastChild;
- String get localName();
+ final String localName;
- String get namespaceURI();
+ final String namespaceURI;
- Node get nextSibling();
+ final Node nextSibling;
- String get nodeName();
+ final String nodeName;
- int get nodeType();
+ final int nodeType;
- String get nodeValue();
+ String nodeValue;
- void set nodeValue(String value);
+ final Document ownerDocument;
- Document get ownerDocument();
+ final Element parentElement;
- Element get parentElement();
+ final Node parentNode;
- Node get parentNode();
+ String prefix;
- String get prefix();
+ final Node previousSibling;
- void set prefix(String value);
-
- Node get previousSibling();
-
- String get textContent();
-
- void set textContent(String value);
+ String textContent;
void addEventListener(String type, EventListener listener, [bool useCapture]);

Powered by Google App Engine
This is Rietveld 408576698