blob: bcbd5a0c17e766f46cebb38f4b19dedcf0527e61 [file] [log] [blame]
"use strict";
function a() {
let x = 20;
debugger;
return x;
}
function b() {
let y = 40;
return a();
}
function c() {
let z = 60;
return b();
}
function startABC() {
for (let i = 0; i < 5; ++i)
THIS_DOES_NOT_CALL_c();
c();
}
function THIS_DOES_NOT_CALL_c() {
return Math.random();
}