xref
: /
third_party
/
node
/
test
/
fixtures
/
debugger
/
alive.js
(revision 1cb0ef41)
Home
History
Annotate
Line#
Scopes#
Navigate#
Raw
Download
only in
/third_party/node/test/fixtures/debugger/
1
let
x =
0
;
2
function
heartbeat
() {
3
++x;
4
}
5
setInterval
(
heartbeat
,
50
);
6