| OLD | NEW |
| 1 | 1 |
| 2 class SVGLengthList native "*SVGLengthList" { | 2 class SVGLengthList native "*SVGLengthList" { |
| 3 | 3 |
| 4 int numberOfItems; | 4 int get numberOfItems() native "return this.numberOfItems;"; |
| 5 | 5 |
| 6 SVGLength appendItem(SVGLength item) native; | 6 SVGLength appendItem(SVGLength item) native; |
| 7 | 7 |
| 8 void clear() native; | 8 void clear() native; |
| 9 | 9 |
| 10 SVGLength getItem(int index) native; | 10 SVGLength getItem(int index) native; |
| 11 | 11 |
| 12 SVGLength initialize(SVGLength item) native; | 12 SVGLength initialize(SVGLength item) native; |
| 13 | 13 |
| 14 SVGLength insertItemBefore(SVGLength item, int index) native; | 14 SVGLength insertItemBefore(SVGLength item, int index) native; |
| 15 | 15 |
| 16 SVGLength removeItem(int index) native; | 16 SVGLength removeItem(int index) native; |
| 17 | 17 |
| 18 SVGLength replaceItem(SVGLength item, int index) native; | 18 SVGLength replaceItem(SVGLength item, int index) native; |
| 19 | 19 |
| 20 var dartObjectLocalStorage; | 20 var dartObjectLocalStorage; |
| 21 | 21 |
| 22 String get typeName() native; | 22 String get typeName() native; |
| 23 } | 23 } |
| OLD | NEW |