| Index: client/dom/generated/src/frog/SVGPathSegCurvetoQuadraticSmoothRel.dart
|
| diff --git a/client/dom/generated/src/frog/SVGPathSegCurvetoQuadraticSmoothRel.dart b/client/dom/generated/src/frog/SVGPathSegCurvetoQuadraticSmoothRel.dart
|
| index e776036512ccef29b7a277197c0e33d7349a1f9b..46062649590091881f760295280c673dc1561402 100644
|
| --- a/client/dom/generated/src/frog/SVGPathSegCurvetoQuadraticSmoothRel.dart
|
| +++ b/client/dom/generated/src/frog/SVGPathSegCurvetoQuadraticSmoothRel.dart
|
| @@ -1,7 +1,11 @@
|
|
|
| class SVGPathSegCurvetoQuadraticSmoothRel extends SVGPathSeg native "*SVGPathSegCurvetoQuadraticSmoothRel" {
|
|
|
| - num x;
|
| + num get x() native "return this.x;";
|
|
|
| - num y;
|
| + void set x(num value) native "this.x = value;";
|
| +
|
| + num get y() native "return this.y;";
|
| +
|
| + void set y(num value) native "this.y = value;";
|
| }
|
|
|