OLD | NEW |
1 | 1 |
2 class WebKitPointJs extends DOMTypeJs implements WebKitPoint native "*WebKitPoin
t" { | 2 class _WebKitPointJs extends _DOMTypeJs implements WebKitPoint native "*WebKitPo
int" { |
3 WebKitPoint(num x, num y) native; | 3 WebKitPoint(num x, num y) native; |
4 | 4 |
5 | 5 |
6 num get x() native "return this.x;"; | 6 num get x() native "return this.x;"; |
7 | 7 |
8 void set x(num value) native "this.x = value;"; | 8 void set x(num value) native "this.x = value;"; |
9 | 9 |
10 num get y() native "return this.y;"; | 10 num get y() native "return this.y;"; |
11 | 11 |
12 void set y(num value) native "this.y = value;"; | 12 void set y(num value) native "this.y = value;"; |
13 } | 13 } |
OLD | NEW |