load_cmds_initialize
load_debugger_commands($self) -> undef
Loads in our built-in commands.
Called from Term::ReadLine::Perl5::CmdProcessor->new in CmdProc.pm
load_debugger_commands
load_debugger_commands($self, $file_or_dir) -> @errors
Loads in debugger commands by require'ing each Perl file in the 'command' directory. Then a new instance of each class of the form Term::ReadLine::Perl5::Demo:xxx is added to @commands and that array is returned.
load_debugger_command
load_debugger_command($self, $command_file, [$force])
Loads a debugger command. Returns a string containing the error or '' if no error.
run_cmd
run_cmd($self, $cmd_arry)
Looks up cmd_array[0] in @commands and runs that. We do lots of validity testing on cmd_array.
setup_command
setup_command($self, $name)
Instantiate a Cmd and extract info: the NAME and store the command in @commands.