OLD | NEW |
1 | 1 |
2 class SVGPathSegCurvetoQuadraticSmoothAbsJs extends SVGPathSegJs implements SVGP
athSegCurvetoQuadraticSmoothAbs native "*SVGPathSegCurvetoQuadraticSmoothAbs" { | 2 class _SVGPathSegCurvetoQuadraticSmoothAbsJs extends _SVGPathSegJs implements SV
GPathSegCurvetoQuadraticSmoothAbs native "*SVGPathSegCurvetoQuadraticSmoothAbs"
{ |
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 } |
OLD | NEW |