Closed
Bug 659965
Opened 14 years ago
Closed 14 years ago
TI: Assertion failure: [infer failure] Missing type for #4 arg 0: Function:new
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 659779
People
(Reporter: decoder, Unassigned)
References
Details
(Keywords: assertion, testcase)
The following testcase asserts on TI revision 8bcb569c9bf9 (run with -j -m -a -n), tested on 64 bit:
var gTestcases = new Array;
function TestCase(n, d, e, a) {
this.description=d
gTestcases[gTc++]=this
}
TestCase.prototype.dump=function () + toPrinted(this.description);
function toPrinted(value) {
value=value
}
function reportCompare(expected, actual, description) {
new TestCase("unknown-test-name", description);
}
dump=print;
gTc=0;
function jsTestDriverEnd() {
for (var i = 0; i < gTestcases.length; i++) gTestcases[i].dump()
}
new TestCase(TestCase());
new TestCase;
reportCompare(null, null, this);
jsTestDriverEnd();
__proto__=Function;
jsTestDriverEnd();
| Reporter | ||
Updated•14 years ago
|
Summary: TI: Assertion failure: [infer failure] Assertion failure: [infer failure] Missing type for #4 arg 0: Function:new → TI: Assertion failure: [infer failure] Missing type for #4 arg 0: Function:new
Updated•14 years ago
|
Status: NEW → RESOLVED
Closed: 14 years ago
Resolution: --- → DUPLICATE
| Reporter | ||
Comment 2•13 years ago
|
||
A testcase for this bug was already added in the original bug (bug 659779).
Flags: in-testsuite-
You need to log in
before you can comment on or make changes to this bug.
Description
•