| OLD | NEW |
| 1 | 1 |
| 2 class Rect native "*Rect" { | 2 class Rect native "*Rect" { |
| 3 | 3 |
| 4 CSSPrimitiveValue bottom; | 4 CSSPrimitiveValue get bottom() native "return this.bottom;"; |
| 5 | 5 |
| 6 CSSPrimitiveValue left; | 6 CSSPrimitiveValue get left() native "return this.left;"; |
| 7 | 7 |
| 8 CSSPrimitiveValue right; | 8 CSSPrimitiveValue get right() native "return this.right;"; |
| 9 | 9 |
| 10 CSSPrimitiveValue top; | 10 CSSPrimitiveValue get top() native "return this.top;"; |
| 11 | 11 |
| 12 var dartObjectLocalStorage; | 12 var dartObjectLocalStorage; |
| 13 | 13 |
| 14 String get typeName() native; | 14 String get typeName() native; |
| 15 } | 15 } |
| OLD | NEW |