| Class | Debugger::QuitCommand |
| In: |
cli/ruby-debug/commands/quit.rb
|
| Parent: | Command |
Implements debugger "quit" command
Returns a String given the help description of this command
# File cli/ruby-debug/commands/quit.rb, line 32
32: def help(cmd)
33: %{
34: q[uit] [!|unconditionally]\texit from debugger.
35: exit[!]\talias to quit
36:
37: Normally we prompt before exiting. However if the parameter
38: "unconditionally" or is given or suffixed with !, we stop
39: without asking further questions.
40: }
41: end