D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
self
/
root
/
proc
/
self
/
root
/
proc
/
self
/
root
/
opt
/
alt
/
ruby34
/
share
/
ruby
/
irb
/
command
/
Filename :
backtrace.rb
back
Copy
# frozen_string_literal: true require_relative "debug" module IRB # :stopdoc: module Command class Backtrace < DebugCommand def execute(arg) execute_debug_command(pre_cmds: "backtrace #{arg}") end end end # :startdoc: end