Closed
Bug 651232
Opened 15 years ago
Closed 15 years ago
TI: [infer failure] Missing type at #4:00003 pushed 0: RegExp:prototype:new
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 642772
People
(Reporter: decoder, Unassigned)
References
Details
(Keywords: crash, testcase)
The following testcase crashes on TI revision d3215d1e985a (run with -n -a),
tested on 32 bit:
var gTestcases = new Array;
var gTc = gTestcases;
function TestCase(n, d, e, a) {
gTestcases[gTc++] = this
}
TestCase.prototype.dump = function () + toPrinted();
function toPrinted(value) {
value(/\\n/g, 'NL')
}
try {
new TestCase;
delete RegExp;
} catch (e) {}
try {
for ([][1] in this) true
} catch (e) {}
gTestcases[0].dump()
Updated•15 years ago
|
Status: NEW → RESOLVED
Closed: 15 years ago
Resolution: --- → DUPLICATE
| Reporter | ||
Comment 2•13 years ago
|
||
A testcase for this bug was already added in the original bug (bug 642772).
Flags: in-testsuite-
You need to log in
before you can comment on or make changes to this bug.
Description
•