summaryrefslogtreecommitdiff
path: root/test/fixtures/inspector-cli/alive.js
blob: c8ad157b452d11058b5cfba52b2df893e810a073 (plain)
1
2
3
4
5
let x = 0;
function heartbeat() {
  ++x;
}
setInterval(heartbeat, 50);