Closed
Bug 620649
Opened 15 years ago
Closed 15 years ago
JM: incorrect result for JSOP_DEFFUN inside 'with'
Categories
(Core :: JavaScript Engine, defect)
Core
JavaScript Engine
Tracking
()
RESOLVED
DUPLICATE
of bug 620838
| Tracking | Status | |
|---|---|---|
| blocking2.0 | --- | betaN+ |
People
(Reporter: jandem, Assigned: dmandelin)
References
Details
(Keywords: regression, testcase)
Consider this test case:
----
_gczeal = gczeal;
function f() {
with(this) {
function gczeal() { }
}
function g() {
print(gczeal == _gczeal);
}
g();
g();
g();
}
f();
----
./js : false, false, false
./js -m: false, true, true
Updated•15 years ago
|
blocking2.0: --- → ?
Comment 1•15 years ago
|
||
I think this should block 2.0 because it's a regression.
Keywords: regression,
testcase
| Assignee | ||
Comment 2•15 years ago
|
||
I think this is a dup of bug 620838.
blocking2.0: ? → betaN+
Depends on: 620838
| Assignee | ||
Updated•15 years ago
|
Assignee: general → dmandelin
| Assignee | ||
Comment 3•15 years ago
|
||
Confirmed fixed after landing of bug 620838.
Status: NEW → RESOLVED
Closed: 15 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•