Source code
Revision control
Copy as Markdown
Other Tools
//|jit-test| skip-if: isLcovEnabled()
let source = `
function foo() {
return "foo";
}
// Wait is skipped as the source is not registered in the stencil cache.
waitForDelazificationOf(foo);
assertEq(isDelazificationPopulatedFor(foo), false);
`;
const options = {
fileName: "inner-00.js",
lineNumber: 1,
eagerDelazificationStrategy: "OnDemandOnly",
newContext: true,
};
evaluate(source, options);