Sha256: a8529769524f68018c57bcfabe87308e8389ff4869087b0e8991acfa75dd5532
Contents?: true
Size: 1.06 KB
Versions: 14
Compression:
Stored size: 1.06 KB
Contents
# -*- coding: utf-8 -*- # Copyright (C) 2010 Rocky Bernstein <rockyb@rubyforge.net> require_relative '../../base/subsubcmd' class Trepan::SubSubcommand::ShowDebugMacro < Trepan::ShowBoolSubSubcommand unless defined?(HELP) HELP = "Show debugging macros" MIN_ABBREV = 'st'.size NAME = File.basename(__FILE__, '.rb') PREFIX = %w(show debug macro) 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::ShowDebugMacro::PREFIX.join('') debugx_cmd = Trepan::SubSubcommand::ShowDebugMacro.new(show_cmd.proc, debug_cmd, cmd_name) debugx_cmd.run([]) end
Version data entries
14 entries across 14 versions & 1 rubygems