| Index: client/dom/generated/src/frog/SVGPathSegLinetoRel.dart
|
| diff --git a/client/dom/generated/src/frog/SVGPathSegLinetoRel.dart b/client/dom/generated/src/frog/SVGPathSegLinetoRel.dart
|
| index aec93642dd99f35f615eb1d8f5efaa677ad266ec..d56413b0d7c173e66429e7752f212e580d0d696c 100644
|
| --- a/client/dom/generated/src/frog/SVGPathSegLinetoRel.dart
|
| +++ b/client/dom/generated/src/frog/SVGPathSegLinetoRel.dart
|
| @@ -1,7 +1,11 @@
|
|
|
| class SVGPathSegLinetoRel extends SVGPathSeg native "*SVGPathSegLinetoRel" {
|
|
|
| - 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;";
|
| }
|
|
|