| Index: runtime/lib/integers_patch.dart
|
| diff --git a/runtime/lib/integers_patch.dart b/runtime/lib/integers_patch.dart
|
| index c49dbf3c107700f6c3a62b05ccd6e3a842d71d34..f6bc484764435d00c0e5ffd7d4fa7ea2cc07a5b2 100644
|
| --- a/runtime/lib/integers_patch.dart
|
| +++ b/runtime/lib/integers_patch.dart
|
| @@ -62,7 +62,7 @@ patch class int {
|
| /* patch */ static int parse(String source,
|
| { int radix,
|
| int onError(String str) }) {
|
| - if (identical(source, null)) throw new ArgumentError(source);
|
| + if (source == null) throw new ArgumentError(source);
|
| if (radix == null) {
|
| int result;
|
| if (source.isNotEmpty) result = _parse(source);
|
|
|