| Index: runtime/lib/integers_patch.dart
|
| diff --git a/runtime/lib/integers_patch.dart b/runtime/lib/integers_patch.dart
|
| index 95610675a81fb80a41b9d9349eef68d9bab2111a..eec05e11cdd516265d6f796dab849ca39681030e 100644
|
| --- a/runtime/lib/integers_patch.dart
|
| +++ b/runtime/lib/integers_patch.dart
|
| @@ -134,7 +134,7 @@ patch class int {
|
| result = sign * smi;
|
| start = blockEnd;
|
| }
|
| - _Smi multiplier = _PARSE_LIMITS[tableIndex + 1];
|
| + int multiplier = _PARSE_LIMITS[tableIndex + 1];
|
| int blockEnd = start + blockSize;
|
| do {
|
| _Smi smi = _parseBlock(source, radix, start, blockEnd);
|
|
|