Chromium Code Reviews| Index: lib/compiler/implementation/lib/interceptors.dart |
| =================================================================== |
| --- lib/compiler/implementation/lib/interceptors.dart (revision 8515) |
| +++ lib/compiler/implementation/lib/interceptors.dart (working copy) |
| @@ -353,7 +353,7 @@ |
| if (receiver is num) { |
| return JS('bool', @'isNaN(#)', receiver); |
| } else { |
| - return UNINTERCEPTED(receiver.isNegative()); |
| + return UNINTERCEPTED(receiver.isNaN()); |
| } |
| } |