blob: 55e1d18826432ca790f5454644d66b7549dffe75 [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() {
c();
}