Closed
Bug 352198
Opened 19 years ago
Closed 19 years ago
Incorrect decompilation for "yield (yield);"
Categories
(Core :: JavaScript Engine, defect, P2)
Tracking
()
VERIFIED
FIXED
mozilla1.8.1alpha1
People
(Reporter: jruderman, Assigned: brendan)
Details
(Keywords: testcase, verified1.8.1)
Attachments
(1 file, 1 obsolete file)
1.01 KB,
patch
|
mrbkap
:
review+
mtschrep
:
approval1.8.1+
|
Details | Diff | Splinter Review |
js> function() { yield (yield); }
function () {
yield yield;
}
js> function() { yield yield; }
typein:9: SyntaxError: missing ; before statement:
Assignee | ||
Comment 1•19 years ago
|
||
I'll fold this into the branch patch for bug 352026.
/be
Assignee | ||
Updated•19 years ago
|
OS: Mac OS X 10.4 → All
Priority: -- → P2
Target Milestone: --- → mozilla1.8.1alpha1
Assignee | ||
Comment 2•19 years ago
|
||
Attachment #237792 -
Attachment is obsolete: true
Attachment #237793 -
Flags: review?(mrbkap)
Attachment #237792 -
Flags: review?(mrbkap)
Updated•19 years ago
|
Attachment #237793 -
Flags: review?(mrbkap) → review+
Assignee | ||
Updated•19 years ago
|
Attachment #237793 -
Flags: approval1.8.1?
Comment 3•19 years ago
|
||
Comment on attachment 237793 [details] [diff] [review]
fix missing paren
a=schrep
Attachment #237793 -
Flags: approval1.8.1? → approval1.8.1+
Assignee | ||
Comment 5•19 years ago
|
||
Already fixed on the trunk:
revision 3.172
date: 2006/09/11 21:26:30; author: brendan%mozilla.org; state: Exp; lines: +1 -1
Fix yield (yield) decompilation (352198, r=mrbkap).
/be
Status: ASSIGNED → RESOLVED
Closed: 19 years ago
Resolution: --- → FIXED
Comment 6•19 years ago
|
||
Checking in regress-352198.js;
/cvsroot/mozilla/js/tests/js1_7/geniter/regress-352198.js,v <-- regress-352198.js
initial revision: 1.1
done
Flags: in-testsuite+
Comment 7•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
•