Class: Rubinius::Debugger::CommandDescription
- Inherits:
-
Object
- Object
- Rubinius::Debugger::CommandDescription
- Defined in:
- lib/rubinius/debugger/commands.rb
Instance Attribute Summary collapse
-
#ext_help ⇒ Object
Returns the value of attribute ext_help.
-
#help ⇒ Object
Returns the value of attribute help.
-
#klass ⇒ Object
Returns the value of attribute klass.
-
#patterns ⇒ Object
Returns the value of attribute patterns.
Instance Method Summary collapse
-
#initialize(klass) ⇒ CommandDescription
constructor
A new instance of CommandDescription.
- #name ⇒ Object
Constructor Details
#initialize(klass) ⇒ CommandDescription
Returns a new instance of CommandDescription.
7 8 9 |
# File 'lib/rubinius/debugger/commands.rb', line 7 def initialize(klass) @klass = klass end |
Instance Attribute Details
#ext_help ⇒ Object
Returns the value of attribute ext_help.
5 6 7 |
# File 'lib/rubinius/debugger/commands.rb', line 5 def ext_help @ext_help end |
#help ⇒ Object
Returns the value of attribute help.
5 6 7 |
# File 'lib/rubinius/debugger/commands.rb', line 5 def help @help end |
#klass ⇒ Object
Returns the value of attribute klass.
5 6 7 |
# File 'lib/rubinius/debugger/commands.rb', line 5 def klass @klass end |
#patterns ⇒ Object
Returns the value of attribute patterns.
5 6 7 |
# File 'lib/rubinius/debugger/commands.rb', line 5 def patterns @patterns end |
Instance Method Details
#name ⇒ Object
11 12 13 |
# File 'lib/rubinius/debugger/commands.rb', line 11 def name @klass.name end |