| Index: sdk/lib/_internal/lib/math_patch.dart
|
| diff --git a/sdk/lib/_internal/lib/math_patch.dart b/sdk/lib/_internal/lib/math_patch.dart
|
| index 672b5c2e1a0cbf4da9dbaac6584af2197e46a9c9..e3aabe3d4265451d9d114742159a247e6342fe9e 100644
|
| --- a/sdk/lib/_internal/lib/math_patch.dart
|
| +++ b/sdk/lib/_internal/lib/math_patch.dart
|
| @@ -156,7 +156,7 @@ class _Random implements Random {
|
| _nextState();
|
| int bits26 = _lo & ((1 << 26) - 1);
|
| _nextState();
|
| - unt bits27 = _lo & ((1 << 27) - 1);
|
| + int bits27 = _lo & ((1 << 27) - 1);
|
| return (bits26 * _POW2_27_D + bits27) / _POW2_53_D;
|
| }
|
|
|
|
|