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

Unified Diff: client/dom/generated/src/frog/XPathResult.dart

Issue 9221006: Move frog dart:dom from fields to getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: comment Created 8 years, 11 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
« no previous file with comments | « client/dom/generated/src/frog/XPathException.dart ('k') | client/dom/scripts/dartgenerator.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/generated/src/frog/XPathResult.dart
diff --git a/client/dom/generated/src/frog/XPathResult.dart b/client/dom/generated/src/frog/XPathResult.dart
index 06e09753e0fd76843b7aa56e7da1db817fdcc8d6..e24e52cc06f4e0ab5501315c57a00a423a828d8f 100644
--- a/client/dom/generated/src/frog/XPathResult.dart
+++ b/client/dom/generated/src/frog/XPathResult.dart
@@ -21,19 +21,19 @@ class XPathResult native "*XPathResult" {
static final int UNORDERED_NODE_SNAPSHOT_TYPE = 6;
- bool booleanValue;
+ bool get booleanValue() native "return this.booleanValue;";
- bool invalidIteratorState;
+ bool get invalidIteratorState() native "return this.invalidIteratorState;";
- num numberValue;
+ num get numberValue() native "return this.numberValue;";
- int resultType;
+ int get resultType() native "return this.resultType;";
- Node singleNodeValue;
+ Node get singleNodeValue() native "return this.singleNodeValue;";
- int snapshotLength;
+ int get snapshotLength() native "return this.snapshotLength;";
- String stringValue;
+ String get stringValue() native "return this.stringValue;";
Node iterateNext() native;
« no previous file with comments | « client/dom/generated/src/frog/XPathException.dart ('k') | client/dom/scripts/dartgenerator.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698