| Index: lib/runtime/dart/math.js
|
| diff --git a/lib/runtime/dart/math.js b/lib/runtime/dart/math.js
|
| index a9065f57d9fd1f117eee022d6d49fa41c732c5ab..6c056a27349dbf722ba61985ac4059ffe7d420a5 100644
|
| --- a/lib/runtime/dart/math.js
|
| +++ b/lib/runtime/dart/math.js
|
| @@ -190,7 +190,7 @@ var math;
|
| this[_height] = height;
|
| }
|
| }
|
| - MutableRectangle[dart.implements] = [Rectangle$(T)];
|
| + MutableRectangle[dart.implements] = () => [Rectangle$(T)];
|
| dart.defineNamedConstructor(MutableRectangle, 'fromPoints');
|
| return MutableRectangle;
|
| });
|
| @@ -317,7 +317,7 @@ var math;
|
| return Math.random() < 0.5;
|
| }
|
| }
|
| - _JSRandom[dart.implements] = [Random];
|
| + _JSRandom[dart.implements] = () => [Random];
|
| let _lo = Symbol('_lo');
|
| let _hi = Symbol('_hi');
|
| let _MASK32 = Symbol('_MASK32');
|
| @@ -422,7 +422,7 @@ var math;
|
| return (dart.notNull(this[_lo]) & 1) == 0;
|
| }
|
| }
|
| - _Random[dart.implements] = [Random];
|
| + _Random[dart.implements] = () => [Random];
|
| _Random._POW2_53_D = 1.0 * 9007199254740992;
|
| _Random._POW2_27_D = 1.0 * (1 << 27);
|
| _Random._MASK32 = 4294967295;
|
|
|