| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |