Closed
Bug 349648
Opened 19 years ago
Closed 19 years ago
Extra "[" in decompilation of nested array comprehensions
Categories
(Core :: JavaScript Engine, defect, P1)
Core
JavaScript Engine
Tracking
()
VERIFIED
FIXED
mozilla1.8.1
People
(Reporter: jruderman, Assigned: brendan)
References
Details
(Keywords: testcase, verified1.8.1, Whiteboard: [schrep-181approval pending])
Attachments
(1 file, 1 obsolete file)
|
1.16 KB,
patch
|
sayrer
:
review+
mrbkap
:
superreview+
mtschrep
:
approval1.8.1+
|
Details | Diff | Splinter Review |
> function(){ [[0 for (x in [])] for (y in []) ]; }
function () { [[0 for (x in [])] for (y in [])[]; }
^---- does not belong
This causes a syntax error if I try to use the decompiled function.
Comment 1•19 years ago
|
||
I understand enough of jsopcode.c to be dangerous.
> function(){ [[0 for (x in [])] for (y in []) ]; }
function () { [[0 for (x in [])] for (y in [])]; }
> function(){ [[0 for (x in [])] for (yyyyyyyyyyy in []) ]; }
function () { [[0 for (x in [])] for (yyyyyyyyyyy in [])]; }
> function(){ [0 for (x in [])]; }
function () { [0 for (x in [])]; }
> function(){ [[[0 for (x in [])] for (yyyyyyyyyyy in []) ] for (zzz in [])]; }
function () { [[[0 for (x in [])] for (yyyyyyyyyyy in [])] for (zzz in [])]; }
Attachment #235609 -
Flags: review?(brendan)
Updated•19 years ago
|
Attachment #235609 -
Flags: review?(brendan)
| Assignee | ||
Comment 2•19 years ago
|
||
Brave to dive into the bytecode-resugaring hack that is the decompiler!
The patch fixes the testcase in comment 0, but not a variation that makes the initializing expression longer:
js> function(){ [[0 for (x in [])] for (y in []) ]; }
function () {
[[0 for (x in [])] for (y in [])];
}
js> function(){ [[11 for (x in [])] for (y in []) ]; }
function () {
[[11 for (x in [])1] for (y in [])];
}
More in a bit.
/be
| Assignee | ||
Comment 3•19 years ago
|
||
Typo, really -- when you get intermediate decompiler results replayed in the final result, it usually means a failure to pop or retract.
/be
Assignee: general → brendan
Attachment #235609 -
Attachment is obsolete: true
Status: NEW → ASSIGNED
Attachment #235624 -
Flags: superreview?(mrbkap)
Attachment #235624 -
Flags: review?(sayrer)
Attachment #235624 -
Flags: approval1.8.1?
| Assignee | ||
Updated•19 years ago
|
OS: Mac OS X 10.4 → All
Priority: -- → P1
Hardware: Macintosh → All
Target Milestone: --- → mozilla1.8.1
| Assignee | ||
Comment 4•19 years ago
|
||
Safe one character (!) fix for js1.7.
/be
Blocks: js1.7
Flags: blocking1.8.1?
Comment 5•19 years ago
|
||
Comment on attachment 235624 [details] [diff] [review]
fix: retract to the point we're overwriting with Sprint
> The patch fixes the testcase in comment 0, but not a variation that makes the
> initializing expression longer:
>
yeah, I cancelled review when I figured that out. :)
r=sayrer
Attachment #235624 -
Flags: review?(sayrer) → review+
Updated•19 years ago
|
Attachment #235624 -
Flags: superreview?(mrbkap) → superreview+
| Assignee | ||
Comment 6•19 years ago
|
||
Fixed on trunk.
/be
Status: ASSIGNED → RESOLVED
Closed: 19 years ago
Resolution: --- → FIXED
Updated•19 years ago
|
Whiteboard: [schrep-181approval pending]
Comment 7•19 years ago
|
||
Comment on attachment 235624 [details] [diff] [review]
fix: retract to the point we're overwriting with Sprint
a=schrep/beltnzer for drivers.
Attachment #235624 -
Flags: approval1.8.1? → approval1.8.1+
Updated•19 years ago
|
Flags: blocking1.8.1? → blocking1.8.1+
Comment 9•19 years ago
|
||
Checking in regress-349648.js;
/cvsroot/mozilla/js/tests/js1_5/Regress/regress-349648.js,v <-- regress-349648.js
initial revision: 1.1
Flags: in-testsuite+
Comment 10•19 years ago
|
||
verified fixed 1.8 20060828 windows/mac*/linux
Keywords: fixed1.8.1 → verified1.8.1
You need to log in
before you can comment on or make changes to this bug.
Description
•