Closed
Bug 429249
Opened 17 years ago
Closed 17 years ago
Confused decompilation with trapped startxml (e4x)
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
VERIFIED
FIXED
People
(Reporter: jruderman, Unassigned)
References
Details
(Keywords: testcase)
Attachments
(1 file)
2.24 KB,
text/plain
|
Details |
jesse-rudermans-computer:~/trunk/mozilla/js/src/Darwin_DBG.OBJ jruderman$ ./js
js> function g() { return <x/> }
js> g
function g() {
return <x/>;
}
js> trap(g, 0, "");
js> g
function g() {
return "<x/>";
}
Adding the trap should not change the decompilation.
Comment 1•17 years ago
|
||
This is fixed by my WIP patch from bug 422137.
Updated•17 years ago
|
Status: NEW → RESOLVED
Closed: 17 years ago
Flags: in-testsuite?
Resolution: --- → FIXED
Comment 2•17 years ago
|
||
I'll check in when the tree reopens.
Comment 3•17 years ago
|
||
/cvsroot/mozilla/js/tests/public-failures.txt,v <-- public-failures.txt
new revision: 1.71; previous revision: 1.70
/cvsroot/mozilla/js/tests/e4x/decompilation/regress-429249.js,v <-- regress-429249.js
initial revision: 1.1
Flags: in-testsuite?
Flags: in-testsuite+
Flags: in-litmus-
You need to log in
before you can comment on or make changes to this bug.
Description
•