Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(126)

Side by Side Diff: client/dom/generated/src/frog/SVGPathSegArcAbs.dart

Issue 9312003: Use fields in hidden native DOM classes instead of getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Also fix native Created 8 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 1
2 class _SVGPathSegArcAbsJs extends _SVGPathSegJs implements SVGPathSegArcAbs nati ve "*SVGPathSegArcAbs" { 2 class _SVGPathSegArcAbsJs extends _SVGPathSegJs implements SVGPathSegArcAbs nati ve "*SVGPathSegArcAbs" {
3 3
4 num get angle() native "return this.angle;"; 4 num angle;
5 5
6 void set angle(num value) native "this.angle = value;"; 6 bool largeArcFlag;
7 7
8 bool get largeArcFlag() native "return this.largeArcFlag;"; 8 num r1;
9 9
10 void set largeArcFlag(bool value) native "this.largeArcFlag = value;"; 10 num r2;
11 11
12 num get r1() native "return this.r1;"; 12 bool sweepFlag;
13 13
14 void set r1(num value) native "this.r1 = value;"; 14 num x;
15 15
16 num get r2() native "return this.r2;"; 16 num y;
17
18 void set r2(num value) native "this.r2 = value;";
19
20 bool get sweepFlag() native "return this.sweepFlag;";
21
22 void set sweepFlag(bool value) native "this.sweepFlag = value;";
23
24 num get x() native "return this.x;";
25
26 void set x(num value) native "this.x = value;";
27
28 num get y() native "return this.y;";
29
30 void set y(num value) native "this.y = value;";
31 } 17 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698