DEBSOURCES
Skip Quicknav
sources / libnb-platform18-java / 12.1-3 / webcommon / javascript2.editor / test / unit / data / testfiles / markoccurences / functionDeclaration / functionDeclaration01.js
12345678
function f1(cont) { if (cont) { f1(false); // f1 is called again } console.log("running f1 outer"); } f1(true);