| Index: test/generated_sdk/lib/core/int.dart
|
| diff --git a/test/generated_sdk/lib/core/int.dart b/test/generated_sdk/lib/core/int.dart
|
| index ca21390fbd17d82f998eb8f5a67cb2d049acc394..982402df4046c75048dc64dcf7a0e824e52158e6 100644
|
| --- a/test/generated_sdk/lib/core/int.dart
|
| +++ b/test/generated_sdk/lib/core/int.dart
|
| @@ -278,6 +278,8 @@ abstract class int extends num {
|
| static int parse(String source,
|
| { int radix,
|
| int onError(String source) }) {
|
| - return Primitives.parseInt(source, radix, onError);
|
| + // TODO(jmesserly): fix this
|
| + return JS('int', 'Number(#)', source);
|
| + //return Primitives.parseInt(source, radix, onError);
|
| }
|
| }
|
|
|