blob: 85680df021f01f79bd52bb335b147e86f65962bb [file] [log] [blame]
"use strict";
function a() {
let x = 20;
debugger;
return x;
}
function b() {
let y = 40;
return a.call({aThis: 2});
}
function c() {
let z = 60;
return b.call({bThis: 1});
}
function startABC() {
c.call({cThis: 0});
}