class Object

Constants

EXECUTABLE
RESULT
TARGET

Public Instance Methods

main() click to toggle source
# File bin/gdbruby.rb, line 531
def main
  config = GDBRubyConfig.new(ARGV)
  gdbruby = GDBRuby.new(config)
  gdbruby.trace
end
method1(*args) click to toggle source
# File spec/target/call.rb, line 6
def method1(*args)
  Module1::method2(*args)
end
method4(*args) click to toggle source
# File spec/target/call.rb, line 22
def method4(*args)
  begin
    raise
  rescue
    method5(*args)
  end
end
method5(*args) click to toggle source
# File spec/target/call.rb, line 30
def method5(*args)
  begin
    raise
  rescue
  ensure
    method6(*args)
  end
end
method6(*args) click to toggle source
# File spec/target/call.rb, line 39
def method6(*args)
  method7(*args) do |*args|
    p args
    sleep(100)
  end
end
method7(*args) { |*args| ... } click to toggle source
# File spec/target/call.rb, line 46
def method7(*args)
  yield *args
end