Closed
Bug 418730
Opened 17 years ago
Closed 17 years ago
"export *" silently halts JavaScript execution if there are a lot of variables
Categories
(Core :: JavaScript Engine, defect)
Tracking
()
RESOLVED
WORKSFORME
People
(Reporter: jruderman, Unassigned)
Details
(Keywords: testcase)
for (let i = 0; i < 60; ++i)
this["v" + i] = true;
try {
print("GO");
export *;
print("PASS (1)");
} catch(e) {
print("PASS (2)")
print(e);
}
Prints only "GO" and not "PASS".
Updated•17 years ago
|
Whiteboard: DUPEME
Reporter | ||
Comment 1•17 years ago
|
||
WFM after updating.
Reporter | ||
Updated•17 years ago
|
Status: NEW → RESOLVED
Closed: 17 years ago
Flags: in-testsuite?
Resolution: --- → WORKSFORME
Comment 2•17 years ago
|
||
/cvsroot/mozilla/js/tests/js1_5/extensions/regress-418730.js,v <-- regress-418730.js
initial revision: 1.1
Flags: in-testsuite? → in-testsuite+
You need to log in
before you can comment on or make changes to this bug.
Description
•