blob: 317cbab2fbe60d3ab262de1a6133a9d9ddbcbd99 [file] [log] [blame] [edit]
const NUM_NESTED_FUNCTIONS = 100;
function main() {
const error = (new Function(`return (function () { arguments.callee.displayName = 'a'.repeat(0x100000) + 'b'; `.repeat(NUM_NESTED_FUNCTIONS) + `return new Error();` + ` })();`.repeat(NUM_NESTED_FUNCTIONS)))();
error.stack;
}
main();