Skip to content

Commit

Permalink
Fixing hex parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastienros committed Mar 1, 2014
1 parent ec108f5 commit a992408
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion Jint/Parser/JavascriptParser.cs
Expand Up @@ -731,7 +731,7 @@ private Token ScanHexLiteral(int start)
return new Token
{
Type = Tokens.NumericLiteral,
Value = Convert.ToInt32(number, 16),
Value = Convert.ToInt64(number, 16),
LineNumber = _lineNumber,
LineStart = _lineStart,
Range = new[] {start, _index}
Expand Down
1 change: 0 additions & 1 deletion README.md
Expand Up @@ -85,7 +85,6 @@ If you need to pass a JavaScript callback to the CLR, then it will be converted
## Current tasks:

- Fix remaining SunSpider scripts
- crypto-aes
- 3d-raytrace


0 comments on commit a992408

Please sign in to comment.