Class: Rubinius::Debugger::CommandDescription

Inherits:
Object
  • Object
show all
Defined in:
lib/rubinius/debugger/commands.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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_helpObject

Returns the value of attribute ext_help.



5
6
7
# File 'lib/rubinius/debugger/commands.rb', line 5

def ext_help
  @ext_help
end

#helpObject

Returns the value of attribute help.



5
6
7
# File 'lib/rubinius/debugger/commands.rb', line 5

def help
  @help
end

#klassObject

Returns the value of attribute klass.



5
6
7
# File 'lib/rubinius/debugger/commands.rb', line 5

def klass
  @klass
end

#patternsObject

Returns the value of attribute patterns.



5
6
7
# File 'lib/rubinius/debugger/commands.rb', line 5

def patterns
  @patterns
end

Instance Method Details

#nameObject



11
12
13
# File 'lib/rubinius/debugger/commands.rb', line 11

def name
  @klass.name
end