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

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

Issue 9312003: Use fields in hidden native DOM classes instead of getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Also fix native 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
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 a5101ab5741fff806ac64ce46ad319d90fe2e4a3..0a074634aac680e329161a9366c6dcd283f26471 100644
--- a/client/dom/generated/src/frog/XPathResult.dart
+++ b/client/dom/generated/src/frog/XPathResult.dart
@@ -21,19 +21,19 @@ class _XPathResultJs extends _DOMTypeJs implements XPathResult native "*XPathRes
static final int UNORDERED_NODE_SNAPSHOT_TYPE = 6;
- bool get booleanValue() native "return this.booleanValue;";
+ final bool booleanValue;
- bool get invalidIteratorState() native "return this.invalidIteratorState;";
+ final bool invalidIteratorState;
- num get numberValue() native "return this.numberValue;";
+ final num numberValue;
- int get resultType() native "return this.resultType;";
+ final int resultType;
- _NodeJs get singleNodeValue() native "return this.singleNodeValue;";
+ final _NodeJs singleNodeValue;
- int get snapshotLength() native "return this.snapshotLength;";
+ final int snapshotLength;
- String get stringValue() native "return this.stringValue;";
+ final String stringValue;
_NodeJs iterateNext() native;

Powered by Google App Engine
This is Rietveld 408576698