Class: Break::Command

Inherits:
Object
  • Object
show all
Extended by:
Forwardable
Defined in:
lib/break/command.rb

Direct Known Subclasses

TracePointCommand, WhereCommand

Instance Method Summary collapse

Constructor Details

#initialize(session) ⇒ Command

Returns a new instance of Command.



9
10
11
# File 'lib/break/command.rb', line 9

def initialize(session)
  @session = session
end

Instance Method Details

#executeObject

Raises:

  • (NotImplementedError)


13
14
15
# File 'lib/break/command.rb', line 13

def execute
  raise NotImplementedError
end