Source code
Revision control
Copy as Markdown
Other Tools
// Delazify a function while encoding bytecode.
oomTest(() => {
let code = cacheEntry(`
function f() { }
f();
`);
evaluate(code, { saveBytecodeWithDelazifications: true });
});