blob: d4ab12d493e7c55b2fe2ab012f7c78f77462dd8a [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 doNothing() { return 1; }
function THIS_DOES_NOT_CALL_c() {
return doNothing();
}