Closed
Bug 352269
Opened 19 years ago
Closed 19 years ago
Incorrect decompilation for "yield (1,2)"
Categories
(Core :: JavaScript Engine, defect, P1)
Core
JavaScript Engine
Tracking
()
VERIFIED
FIXED
mozilla1.8.1
People
(Reporter: jruderman, Assigned: brendan)
Details
(Keywords: testcase, verified1.8.1)
Attachments
(1 file)
|
1.06 KB,
patch
|
mrbkap
:
review+
mtschrep
:
approval1.8.1+
|
Details | Diff | Splinter Review |
js> function() { yield (1,2) }
function () {
yield 1, 2;
}
js> function () {
yield 1, 2;
typein:3: SyntaxError: yield expression must be parenthesized:
| Assignee | ||
Comment 1•19 years ago
|
||
| Assignee | ||
Updated•19 years ago
|
OS: Mac OS X 10.4 → All
Priority: -- → P1
Hardware: Macintosh → All
Target Milestone: --- → mozilla1.8.1
Updated•19 years ago
|
Attachment #237906 -
Flags: review?(mrbkap) → review+
| Assignee | ||
Comment 2•19 years ago
|
||
Fixed on trunk.
Checking in jsopcode.c;
/cvsroot/mozilla/js/src/jsopcode.c,v <-- jsopcode.c
new revision: 3.177; previous revision: 3.176
done
/be
Status: ASSIGNED → RESOLVED
Closed: 19 years ago
Resolution: --- → FIXED
| Assignee | ||
Updated•19 years ago
|
Attachment #237906 -
Flags: approval1.8.1?
Comment 3•19 years ago
|
||
Comment on attachment 237906 [details] [diff] [review]
fix
a=schrep for 181drivers for JS decompiler fuzz bugs.
Attachment #237906 -
Flags: approval1.8.1? → approval1.8.1+
Comment 5•19 years ago
|
||
Checking in regress-352269.js;
/cvsroot/mozilla/js/tests/js1_7/geniter/regress-352269.js,v <-- regress-352269.js
initial revision: 1.1
done
Flags: in-testsuite+
Comment 6•19 years ago
|
||
verified fixed 1.8 20060914 windows/linux 1.9 20060914 windows/mac*/linux
Status: RESOLVED → VERIFIED
Keywords: fixed1.8.1 → verified1.8.1
You need to log in
before you can comment on or make changes to this bug.
Description
•