Index: client/dom/generated/src/frog/SVGPoint.dart |
diff --git a/client/dom/generated/src/frog/SVGPoint.dart b/client/dom/generated/src/frog/SVGPoint.dart |
index bfb3f4a5e0a8afd2d995eff3b9bdccf255c5cdbe..748e68bb43d54f5759a689696aa3c47adb4410a3 100644 |
--- a/client/dom/generated/src/frog/SVGPoint.dart |
+++ b/client/dom/generated/src/frog/SVGPoint.dart |
@@ -1,9 +1,13 @@ |
class SVGPoint native "*SVGPoint" { |
- 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;"; |
SVGPoint matrixTransform(SVGMatrix matrix) native; |