Sha256: 57702e4eebf34de73583fa182b88f406098ca2e336a2ea50b37cdd2e9f2d9ef9
Contents?: true
Size: 1.11 KB
Versions: 14
Compression:
Stored size: 1.11 KB
Contents
# -*- coding: utf-8 -*- # Copyright (C) 2010 Rocky Bernstein <rockyb@rubyforge.net> require_relative '../../base/subsubcmd' class Trepan::SubSubcommand::ShowDebugStack < Trepan::ShowBoolSubSubcommand unless defined?(HELP) HELP = "Show complete stack including possibly setup stack from trepanning" MIN_ABBREV = 'st'.size NAME = File.basename(__FILE__, '.rb') PREFIX = %w(show debug stack) end end if __FILE__ == $0 # Demo it. require_relative '../../../mock' name = File.basename(__FILE__, '.rb') # FIXME: DRY the below code dbgr, show_cmd = MockDebugger::setup('show') debug_cmd = Trepan::SubSubcommand::ShowDebug.new(dbgr.core.processor, show_cmd) # FIXME: remove the 'join' below cmd_name = Trepan::SubSubcommand::ShowDebugStack::PREFIX.join('') debugx_cmd = Trepan::SubSubcommand::ShowDebugStack.new(show_cmd.proc, debug_cmd, cmd_name) debugx_cmd.run([]) end
Version data entries
14 entries across 14 versions & 1 rubygems