Closed
Bug 758384
Opened 13 years ago
Closed 13 years ago
IonMonkey: Differential Testing: Getting "TypeError: is not a function" with ion and XML
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
FIXED
People
(Reporter: decoder, Assigned: dvander)
References
Details
(Keywords: regression, testcase)
Attachments
(1 file)
|
1.14 KB,
patch
|
jandem
:
review+
|
Details | Diff | Splinter Review |
+++ This bug was initially created as a clone of Bug #758376 +++
The following testcase shows different behavior with options --ion -n -m --ion-eager vs. --no-ion on ionmonkey revision c05b873dad48:
function TEST(section, expected, actual) {}
function TEST_XML(section, expected, actual) {
return TEST(section, expected, actual.toXMLString());
}
x = new XML("");
TEST_XML(2, "", x);
TEST_XML(3, "", x);
$ debug64/js --ion -n -m --ion-eager test.js
test.js:3: TypeError: is not a function
$ debug64/js --no-ion test.js
<no output or error>
| Reporter | ||
Comment 1•13 years ago
|
||
Oh and ignore the clone message at the beginning. I just clone bugs to save some time :)
| Assignee | ||
Updated•13 years ago
|
Assignee: general → dvander
Status: NEW → ASSIGNED
| Assignee | ||
Comment 2•13 years ago
|
||
Use interpreter logic.
Attachment #627419 -
Flags: review?(jdemooij)
Updated•13 years ago
|
Attachment #627419 -
Flags: review?(jdemooij) → review+
| Assignee | ||
Comment 3•13 years ago
|
||
Status: ASSIGNED → RESOLVED
Closed: 13 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•