trisquel-icecat/icecat/devtools/client/debugger/test/mochitest/examples/preview-multiple-frames.js
2025-10-06 02:35:48 -06:00

8 lines
120 B
JavaScript

function fn1() {
const obj = { prop: false };
fn2();
}
function fn2() {
const obj = { prop: true };
debugger;
}