Sign in
apache
/
netbeans
/
refs/heads/release180
/
.
/
webcommon
/
javascript2.model
/
test
/
unit
/
data
/
testfiles
/
markoccurences
/
issue252135.js
blob: fb7d1c23e38b0350bc80c83c56a1e1df8c7d1efb [
file
] [
log
] [
blame
]
var
count
=
1
;
var
aa
=
function
bb
()
{
// <- place caret in aa word
console
.
log
(
"running aa"
);
count
++;
if
(
count
<
5
)
{
bb
();
}
};
aa
();