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

Side by Side Diff: client/dom/generated/src/frog/XPathResult.dart

Issue 8473008: Generate constants for IDL classes (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add frog dom Created 9 years 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « client/dom/generated/src/frog/XPathException.dart ('k') | client/dom/scripts/dartgenerator.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 class XPathResult native "*XPathResult" { 2 class XPathResult native "*XPathResult" {
3 3
4 static final int ANY_TYPE = 0;
5
6 static final int ANY_UNORDERED_NODE_TYPE = 8;
7
8 static final int BOOLEAN_TYPE = 3;
9
10 static final int FIRST_ORDERED_NODE_TYPE = 9;
11
12 static final int NUMBER_TYPE = 1;
13
14 static final int ORDERED_NODE_ITERATOR_TYPE = 5;
15
16 static final int ORDERED_NODE_SNAPSHOT_TYPE = 7;
17
18 static final int STRING_TYPE = 2;
19
20 static final int UNORDERED_NODE_ITERATOR_TYPE = 4;
21
22 static final int UNORDERED_NODE_SNAPSHOT_TYPE = 6;
23
4 bool booleanValue; 24 bool booleanValue;
5 25
6 bool invalidIteratorState; 26 bool invalidIteratorState;
7 27
8 num numberValue; 28 num numberValue;
9 29
10 int resultType; 30 int resultType;
11 31
12 Node singleNodeValue; 32 Node singleNodeValue;
13 33
14 int snapshotLength; 34 int snapshotLength;
15 35
16 String stringValue; 36 String stringValue;
17 37
18 Node iterateNext() native; 38 Node iterateNext() native;
19 39
20 Node snapshotItem(int index) native; 40 Node snapshotItem(int index) native;
21 41
22 var dartObjectLocalStorage; 42 var dartObjectLocalStorage;
23 43
24 String get typeName() native; 44 String get typeName() native;
25 } 45 }
OLDNEW
« 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