Closed
Bug 352025
Opened 19 years ago
Closed 19 years ago
Missing parens in decompilation of nested yields
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
VERIFIED
FIXED
People
(Reporter: jruderman, Unassigned)
References
Details
(Keywords: testcase)
js> function() { yield (yield a); }
function () {
yield yield a;
}
js> function () {
yield yield a;
typein:12: SyntaxError: missing ; before statement:
| Reporter | ||
Comment 2•19 years ago
|
||
Fixed by the patch in bug 352026.
Comment 3•19 years ago
|
||
Checking in regress-352025.js;
/cvsroot/mozilla/js/tests/js1_7/geniter/regress-352025.js,v <-- regress-352025.js
initial revision: 1.1
done
Flags: in-testsuite+
Comment 4•19 years ago
|
||
verified fixed 1.9 20060914 windows/mac*/linux
bug not evident on 1.8...
Status: RESOLVED → VERIFIED
You need to log in
before you can comment on or make changes to this bug.
Description
•