Class: IRB::Command::Kill
Do not use. This class is for internal use only.
Relationships & Source Files | |
Super Chains via Extension / Inclusion / Inheritance | |
Class Chain:
self,
MultiIRBCommand ,
Base
|
|
Instance Chain:
|
|
Inherits: |
IRB::Command::MultiIRBCommand
|
Defined in: | lib/irb/command/subirb.rb |
Class Method Summary
Base
- Inherited
Instance Attribute Summary
Base
- Inherited
Instance Method Summary
Constructor Details
This class inherits a constructor from IRB::Command::Base
Instance Method Details
#execute(arg)
[ GitHub ]# File 'lib/irb/command/subirb.rb', line 102
def execute(arg) args, kwargs = ruby_args(arg) execute_internal(*args, **kwargs) end
#execute_internal(*keys)
[ GitHub ]# File 'lib/irb/command/subirb.rb', line 107
def execute_internal(*keys) print_deprecated_warning if irb_context.with_debugger print_debugger_warning return end extend_irb_context IRB.JobManager.kill(*keys) puts IRB.JobManager.inspect end