| OLD | NEW |
| 1 | 1 |
| 2 class SVGPointJs extends DOMTypeJs implements SVGPoint native "*SVGPoint" { | 2 class _SVGPointJs extends _DOMTypeJs implements SVGPoint native "*SVGPoint" { |
| 3 | 3 |
| 4 num get x() native "return this.x;"; | 4 num get x() native "return this.x;"; |
| 5 | 5 |
| 6 void set x(num value) native "this.x = value;"; | 6 void set x(num value) native "this.x = value;"; |
| 7 | 7 |
| 8 num get y() native "return this.y;"; | 8 num get y() native "return this.y;"; |
| 9 | 9 |
| 10 void set y(num value) native "this.y = value;"; | 10 void set y(num value) native "this.y = value;"; |
| 11 | 11 |
| 12 SVGPointJs matrixTransform(SVGMatrixJs matrix) native; | 12 _SVGPointJs matrixTransform(_SVGMatrixJs matrix) native; |
| 13 } | 13 } |
| OLD | NEW |