| OLD | NEW |
| 1 | 1 |
| 2 class XPathResult native "XPathResult" { | 2 class XPathResult native "*XPathResult" { |
| 3 | 3 |
| 4 bool booleanValue; | 4 bool booleanValue; |
| 5 | 5 |
| 6 bool invalidIteratorState; | 6 bool invalidIteratorState; |
| 7 | 7 |
| 8 num numberValue; | 8 num numberValue; |
| 9 | 9 |
| 10 int resultType; | 10 int resultType; |
| 11 | 11 |
| 12 Node singleNodeValue; | 12 Node singleNodeValue; |
| 13 | 13 |
| 14 int snapshotLength; | 14 int snapshotLength; |
| 15 | 15 |
| 16 String stringValue; | 16 String stringValue; |
| 17 | 17 |
| 18 Node iterateNext() native; | 18 Node iterateNext() native; |
| 19 | 19 |
| 20 Node snapshotItem(int index) native; | 20 Node snapshotItem(int index) native; |
| 21 | 21 |
| 22 var dartObjectLocalStorage; | 22 var dartObjectLocalStorage; |
| 23 | 23 |
| 24 String get typeName() native; | 24 String get typeName() native; |
| 25 } | 25 } |
| OLD | NEW |