Closed
Bug 352068
Opened 19 years ago
Closed 19 years ago
Round-trip change with "!(3)"
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
VERIFIED
FIXED
People
(Reporter: jruderman, Assigned: brendan)
Details
(Keywords: testcase, verified1.8.1)
Attachments
(1 file)
914 bytes,
patch
|
mrbkap
:
review+
mtschrep
:
approval1.8.1+
|
Details | Diff | Splinter Review |
This is similar to bug 351693, but it involves "!" instead of the ternary operator.
./js -v 170
js> function() { return !(3) }
function () {
return !3;
}
js> function () {
return !3;
}
function () {
return false;
}
Assignee | ||
Comment 1•19 years ago
|
||
Easy fix, safe for 1.8.1.
/be
Assignee: general → brendan
Status: NEW → ASSIGNED
Attachment #237853 -
Flags: review?(mrbkap)
Attachment #237853 -
Flags: approval1.8.1?
Updated•19 years ago
|
Attachment #237853 -
Flags: review?(mrbkap) → review+
Comment 2•19 years ago
|
||
Comment on attachment 237853 [details] [diff] [review]
fix
a=schrep
Attachment #237853 -
Flags: approval1.8.1? → approval1.8.1+
Assignee | ||
Comment 3•19 years ago
|
||
Fixed on trunk.
/be
Status: ASSIGNED → RESOLVED
Closed: 19 years ago
Resolution: --- → FIXED
Comment 5•19 years ago
|
||
Checking in regress-352068.js;
/cvsroot/mozilla/js/tests/js1_7/lexical/regress-352068.js,v <-- regress-352068.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
•