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

Side by Side Diff: client/dom/generated/src/frog/Range.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
OLDNEW
1 1
2 class Range native "*Range" { 2 class Range native "*Range" {
3 3
4 static final int END_TO_END = 2;
5
6 static final int END_TO_START = 3;
7
8 static final int NODE_AFTER = 1;
9
10 static final int NODE_BEFORE = 0;
11
12 static final int NODE_BEFORE_AND_AFTER = 2;
13
14 static final int NODE_INSIDE = 3;
15
16 static final int START_TO_END = 1;
17
18 static final int START_TO_START = 0;
19
4 bool collapsed; 20 bool collapsed;
5 21
6 Node commonAncestorContainer; 22 Node commonAncestorContainer;
7 23
8 Node endContainer; 24 Node endContainer;
9 25
10 int endOffset; 26 int endOffset;
11 27
12 Node startContainer; 28 Node startContainer;
13 29
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 void setStartBefore(Node refNode) native; 76 void setStartBefore(Node refNode) native;
61 77
62 void surroundContents(Node newParent) native; 78 void surroundContents(Node newParent) native;
63 79
64 String toString() native; 80 String toString() native;
65 81
66 var dartObjectLocalStorage; 82 var dartObjectLocalStorage;
67 83
68 String get typeName() native; 84 String get typeName() native;
69 } 85 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/PositionError.dart ('k') | client/dom/generated/src/frog/RangeException.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698