Closed
Bug 545832
Opened 15 years ago
Closed 6 years ago
Running toSource on parsed hexadecimal gives wrong result
Categories
(Rhino Graveyard :: Core, defect)
Tracking
(Not tracked)
RESOLVED
INACTIVE
People
(Reporter: frankgroeneveld, Unassigned)
Details
Attachments
(2 files)
458 bytes,
patch
|
Details | Diff | Splinter Review | |
21 bytes,
patch
|
Details | Diff | Splinter Review |
User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.1.7) Gecko/20100106 Ubuntu/9.10 (karmic) Firefox/3.5.7
Build Identifier: Source from CVS trunk @ 20091113
Parsing this code:
seed = (typeof fixedseed == "number") ? fixedseed : (Math.round(Math.random() * 0xffffffff));
and running to source on the ASt that is produced, will result in something like this:
seed = (typeof fixedseed == "number") ? fixedseed : (Math.round(Math.random() * ffffffff));
Note that the 0x part of 0xffffffff is stripped off.
Reproducible: Always
Reporter | ||
Comment 1•15 years ago
|
||
Happens with trunk also.
Reporter | ||
Comment 2•15 years ago
|
||
Fix this bug.
Comment 3•13 years ago
|
||
Patch for parsing hexadecimal numbers.
Try running the following before and after the patch:
new Parser().parse("var color = 0xAABBCC;", "", 1).toSource();
Comment 4•6 years ago
|
||
Closing. Bug management is now done here:
https://github.com/mozilla/rhino
Status: UNCONFIRMED → RESOLVED
Closed: 6 years ago
Resolution: --- → INACTIVE
You need to log in
before you can comment on or make changes to this bug.
Description
•