| Index: runtime/lib/math_patch.dart
|
| diff --git a/runtime/lib/math_patch.dart b/runtime/lib/math_patch.dart
|
| index 7d5e752135c46c515809ad2e15afde4ca417a82f..1838df48fb7873278b84d2dab9803f882bcba487 100644
|
| --- a/runtime/lib/math_patch.dart
|
| +++ b/runtime/lib/math_patch.dart
|
| @@ -103,7 +103,7 @@ class _Random implements Random {
|
| static const _kSTATE_LO = 0;
|
| static const _kSTATE_HI = 1; // Unused in Dart code.
|
|
|
| - _Random._withState(Uint32List this._state);
|
| + _Random._withState(this._state);
|
|
|
| // The algorithm used here is Multiply with Carry (MWC) with a Base b = 2^32.
|
| // http://en.wikipedia.org/wiki/Multiply-with-carry
|
|
|