trepan-ni
Version:
Trepan debugger for Node Inspect (and based on node inspect debugger)
28 lines (21 loc) • 638 B
JavaScript
// Copyright 2015, 2018 Rocky Bernstein
;
const util = require('util');
/*============================================================
Debugger 'show args' command.
====================================================*/
exports.Init = function(name, subcmd) {
return {
help: `**show 'args'**
Show argument list to give program being debugged when it is started or
restarted.
See also:
---------
set 'args'`,
run: function(intf) {
intf.print('Argument list to give program being debugged ' +
`when it is started is:
${util.inspect(intf.inspector.options.scriptArgs)}`);
}
};
};