mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
e6dcc3dfa9
This change allows reentering the message dispatch loop when the Node is paused. This is necessary when the pause happened as a result of the message sent by a debug frontend, such as evaluating a function with a breakpoint inside. Fixes: https://github.com/nodejs/node/issues/13320 PR-URL: https://github.com/nodejs/node/pull/13350 Reviewed-By: James M Snell <jasnell@gmail.com>
14 lines
284 B
JavaScript
14 lines
284 B
JavaScript
'use strict'; // eslint-disable-line required-modules
|
|
let invocations = 0;
|
|
const interval = setInterval(() => {}, 1000);
|
|
|
|
global.sum = function() {
|
|
const a = 1;
|
|
const b = 2;
|
|
const c = a + b;
|
|
clearInterval(interval);
|
|
console.log(invocations++, c);
|
|
};
|
|
|
|
console.log('Ready!');
|