| Index: tools/dom/templates/html/impl/impl_DOMRectReadOnly.darttemplate
|
| diff --git a/tools/dom/templates/html/impl/impl_DOMRectReadOnly.darttemplate b/tools/dom/templates/html/impl/impl_DOMRectReadOnly.darttemplate
|
| index b17b5bc4f95549e2b1526308c29d57dcb03e40a7..e9bf8a6d3d1f77f28d1b0e7388ce989cd831605a 100644
|
| --- a/tools/dom/templates/html/impl/impl_DOMRectReadOnly.darttemplate
|
| +++ b/tools/dom/templates/html/impl/impl_DOMRectReadOnly.darttemplate
|
| @@ -89,11 +89,11 @@ $(ANNOTATIONS)$(NATIVESPEC)$(CLASS_MODIFIERS)class $CLASSNAME$EXTENDS implements
|
| another.y <= top + height;
|
| }
|
|
|
| - Point get topLeft => new Point(this.left, this.top);
|
| - Point get topRight => new Point(this.left + this.width, this.top);
|
| - Point get bottomRight => new Point(this.left + this.width,
|
| + Point get topLeft => new Point/*<num>*/(this.left, this.top);
|
| + Point get topRight => new Point/*<num>*/(this.left + this.width, this.top);
|
| + Point get bottomRight => new Point/*<num>*/(this.left + this.width,
|
| this.top + this.height);
|
| - Point get bottomLeft => new Point(this.left,
|
| + Point get bottomLeft => new Point/*<num>*/(this.left,
|
| this.top + this.height);
|
|
|
| $!MEMBERS}
|
|
|