Closed
Bug 811577
Opened 12 years ago
Closed 12 years ago
IonMonkey: Differential Testing: Getting different output with caller and apply
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 818023
People
(Reporter: decoder, Unassigned)
References
Details
(Keywords: regression, testcase)
The following testcase shows different behavior with options ---ion-eager vs. no options on m-c revision 1b0226622e94:
var o = { p:'object' };
function f(obj) {
return f.caller.p ;
}
function ggg(obj) {
return f.apply(obj, [obj]);
}
ggg.p = "hello";
print(ggg(o));
$ debug64/js --ion-eager test.js
undefined
$ debug64/js test.js
hello
Comment 1•12 years ago
|
||
decoder, can you confirm that this bug is fixed?
Status: NEW → RESOLVED
Closed: 12 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•