Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hexadecimal numeral issue #2

Closed
panghl opened this issue Oct 11, 2012 · 1 comment
Closed

Hexadecimal numeral issue #2

panghl opened this issue Oct 11, 2012 · 1 comment
Assignees

Comments

@panghl
Copy link

panghl commented Oct 11, 2012

Hi,
Today I find the new software and have a try, met some issue.

I implement the js code with JSCover, but run the html file failed. Check the implemented JS file, I found there has some Hexadecimal numeral error, like this:
" String.fromCharCode((c1 << 2) | ((c2 & 30) >> 4) & ff)",
while it should be :
"String.fromCharCode((c1 << 2) | ((c2 & 0x30) >> 4) & 0xff)".
Could anyone give me a hand?
Thanks in advance!

@tntim96
Copy link
Owner

tntim96 commented Oct 11, 2012

Thanks for the report. Have raised https://bugzilla.mozilla.org/show_bug.cgi?id=800616 and will see if I can patch and build from my copy of Rhino trunk

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants