Closed
Bug 617757
Opened 14 years ago
Closed 14 years ago
TypeInference: Missing type at #1:00039 popped 1: int
Categories
(Core :: JavaScript Engine, defect)
Core
JavaScript Engine
Tracking
()
RESOLVED
FIXED
People
(Reporter: jandem, Unassigned)
References
Details
(Whiteboard: fixed-in-jaegermonkey)
"with" strikes again:
---
var o = {foo: true};
with(o) {
foo = 10;
}
assertEq(o.foo, 10);
---
Output:
[infer failure] Missing type at #1:00039 popped 1: int
Comment 1•14 years ago
|
||
Oops, handled reads within 'with' but not writes.
http://hg.mozilla.org/projects/jaegermonkey/rev/c305092a1b33
Whiteboard: fixed-in-jaegermonkey
Updated•14 years ago
|
Updated•14 years ago
|
Status: NEW → RESOLVED
Closed: 14 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•