Sha256: f9cb96ff7f1973b4d928164de0cdd48e0589df523b4610654367cb782f454227
Contents?: true
Size: 368 Bytes
Versions: 15
Compression:
Stored size: 368 Bytes
Contents
module Debugger class VarInstanceCommand < Command def execute_with_xml(*args) if Debugger.printer.type == "xml" print Debugger.printer.print_instance_variables(get_obj(@match)) else execute_without_xml(*args) end end alias_method :execute_without_xml, :execute alias_method :execute, :execute_with_xml end end
Version data entries
15 entries across 15 versions & 1 rubygems