| Index: runtime/lib/integers_patch.dart
|
| diff --git a/runtime/lib/integers_patch.dart b/runtime/lib/integers_patch.dart
|
| index 19cc7876e6b7f917583d296fea80f67b45edff58..4a5caa902b1ab7772baab66296defd0a30f4f3ca 100644
|
| --- a/runtime/lib/integers_patch.dart
|
| +++ b/runtime/lib/integers_patch.dart
|
| @@ -44,7 +44,7 @@ patch class int {
|
|
|
| /* patch */ static int parse(String source,
|
| { int radix,
|
| - int onError(String str) }) {
|
| + int onError(String source) }) {
|
| if (source == null) throw new ArgumentError("The source must not be null");
|
| if (source.isEmpty) return _throwFormatException(onError, source, 0, radix);
|
| if (radix == null || radix == 10) {
|
|
|