| OLD | NEW |
| 1 | 1 |
| 2 class SVGAngle native "*SVGAngle" { | 2 class SVGAngle native "*SVGAngle" { |
| 3 | 3 |
| 4 static final int SVG_ANGLETYPE_DEG = 2; |
| 5 |
| 6 static final int SVG_ANGLETYPE_GRAD = 4; |
| 7 |
| 8 static final int SVG_ANGLETYPE_RAD = 3; |
| 9 |
| 10 static final int SVG_ANGLETYPE_UNKNOWN = 0; |
| 11 |
| 12 static final int SVG_ANGLETYPE_UNSPECIFIED = 1; |
| 13 |
| 4 int unitType; | 14 int unitType; |
| 5 | 15 |
| 6 num value; | 16 num value; |
| 7 | 17 |
| 8 String valueAsString; | 18 String valueAsString; |
| 9 | 19 |
| 10 num valueInSpecifiedUnits; | 20 num valueInSpecifiedUnits; |
| 11 | 21 |
| 12 void convertToSpecifiedUnits(int unitType) native; | 22 void convertToSpecifiedUnits(int unitType) native; |
| 13 | 23 |
| 14 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) native; | 24 void newValueSpecifiedUnits(int unitType, num valueInSpecifiedUnits) native; |
| 15 | 25 |
| 16 var dartObjectLocalStorage; | 26 var dartObjectLocalStorage; |
| 17 | 27 |
| 18 String get typeName() native; | 28 String get typeName() native; |
| 19 } | 29 } |
| OLD | NEW |