Chromium Code Reviews| Index: runtime/lib/errors_patch.dart |
| =================================================================== |
| --- runtime/lib/errors_patch.dart (revision 25633) |
| +++ runtime/lib/errors_patch.dart (working copy) |
| @@ -178,9 +178,9 @@ |
| } |
| } |
| -class _FiftyThreeBitOverflowError extends Error { |
| +class _FiftyFourBitOverflowError extends Error { |
| final Object _value; |
| - _FiftyThreeBitOverflowError(this._value); |
| - String toString() => "53-bit Overflow: $_value"; |
| + _FiftyFourBitOverflowError(this._value); |
| + String toString() => "54-bit Overflow: $_value"; |
|
siva
2013/07/31 16:08:28
Should the string say "Javascript Integer Overflow
zra
2013/07/31 17:46:31
Done.
|
| } |