Module: Debugger::DisplayFunctions

Defined in:
lib/ruby-debug/commands/display.rb

Overview

:nodoc:

Instance Method Summary collapse

Instance Method Details

#active_display_expressions?Boolean

Returns:

  • (Boolean)


7
8
9
# File 'lib/ruby-debug/commands/display.rb', line 7

def active_display_expressions?
  @state.display.select{|d| d[0]}.size > 0
end

#display_expression(exp) ⇒ Object



3
4
5
# File 'lib/ruby-debug/commands/display.rb', line 3

def display_expression(exp)
  print "%s = %s\n", exp, debug_silent_eval(exp).to_s
end


11
12
13
14
15
16
17
18
19
20
# File 'lib/ruby-debug/commands/display.rb', line 11

def print_display_expressions
  n = 1
  for d in @state.display
    if d[0]
      print "%d: ", n
      display_expression(d[1])
    end
    n += 1
  end
end