Chromium Code Reviews| Index: sdk/lib/_internal/compiler/implementation/lib/js_helper.dart |
| =================================================================== |
| --- sdk/lib/_internal/compiler/implementation/lib/js_helper.dart (revision 15508) |
| +++ sdk/lib/_internal/compiler/implementation/lib/js_helper.dart (working copy) |
| @@ -463,7 +463,7 @@ |
| static int parseInt(String string) { |
| checkString(string); |
| - var match = JS('=List', |
| + var match = JS('=List|Null', |
|
ahe
2012/11/29 14:48:43
What does this mean? Where is it documented what
ngeoffray
2012/11/30 11:30:00
The documentation is currently in NativeBehavior::
|
| r'/^\s*[+-]?(?:0(x)[a-f0-9]+|\d+)\s*$/i.exec(#)', |
| string); |
| if (match == null) { |