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

Side by Side Diff: client/html/generated/html/frog/XPathResult.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1
2 class _XPathResultImpl implements XPathResult native "*XPathResult" {
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
24 final bool booleanValue;
25
26 final bool invalidIteratorState;
27
28 final num numberValue;
29
30 final int resultType;
31
32 final _NodeImpl singleNodeValue;
33
34 final int snapshotLength;
35
36 final String stringValue;
37
38 _NodeImpl iterateNext() native;
39
40 _NodeImpl snapshotItem(int index) native;
41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698