Source code

Revision control

Copy as Markdown

Other Tools

let g = newGlobal();
let error = g.eval("Error()");
// This should not throw.
assertEq(typeof error.stack, "string");
g.error = Error();
// Nor should this.
assertEq(g.eval("typeof error.stack"), "string");