trepan-ni
Version:
Trepan debugger for Node Inspect (and based on node inspect debugger)
28 lines (23 loc) • 549 B
JavaScript
// Copyright 2018 Rocky Bernstein
;
/*========================================
Debugger 'pause' command.
==========================================*/
exports.Init = function(intf, repl) {
intf.defineCommand('pause', repl, {
help: `Pause a running program.
Usage: **pause**
See also:
---------
cont, next, step, break
`,
connection: false,
run: function() {
if (intf.selectedFrame) {
intf.print('Program is already paused.');
} else {
return intf.Debugger.pause();
}
}
});
};