Closed
Bug 651218
Opened 14 years ago
Closed 14 years ago
TI: SIGTRAP with catch/yield
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 646267
People
(Reporter: decoder, Unassigned)
References
Details
(Keywords: crash, testcase)
The following testcase causes a trap on TI revision d78eef12a329 (run with -m -n -a), tested on 32 bit:
function expectThrowError(errorCtor, fun) {
try {
fun()
} catch (e) {}
}
function expectThrowTypeError(fun)
expectThrowError(TypeError, fun);
expectThrowError(SyntaxError, function () {});
expectThrowError(SyntaxError, function () {});
expectThrowError(SyntaxError, function () {});
expectThrowError(RangeError, function () {});
expectThrowTypeError(function () { yield });
Updated•14 years ago
|
Status: NEW → RESOLVED
Closed: 14 years ago
Resolution: --- → DUPLICATE
Reporter | ||
Comment 2•12 years ago
|
||
A testcase for this bug was already added in the original bug (bug 646267).
Flags: in-testsuite-
You need to log in
before you can comment on or make changes to this bug.
Description
•