Module: Byebug::Helpers::VarHelper

Overview

Utilities for variable subcommands

Instance Method Summary collapse

Methods included from EvalHelper

#error_eval, #multiple_thread_eval, #separate_thread_eval, #silent_eval, #warning_eval

Instance Method Details

#var_argsObject



42
43
44
45
46
47
48
49
50
51
# File 'lib/byebug/helpers/var.rb', line 42

def var_args
  args = context.frame.args
  return if args == [[:rest]]

  all_locals = context.frame.locals
  arg_values = args.map { |arg| arg[1] }

  locals = all_locals.select { |k, _| arg_values.include?(k) }
  puts prv(locals.keys.sort.map { |k| [k, locals[k]] }, "instance")
end

#var_globalObject



21
22
23
24
25
26
27
# File 'lib/byebug/helpers/var.rb', line 21

def var_global
  globals = global_variables.reject do |v|
    %i[$IGNORECASE $= $KCODE $-K $binding].include?(v)
  end

  var_list(globals)
end

#var_instance(str) ⇒ Object



29
30
31
32
33
# File 'lib/byebug/helpers/var.rb', line 29

def var_instance(str)
  obj = warning_eval(str || "self")

  var_list(obj.instance_variables, obj.instance_eval { binding })
end

#var_list(ary, binding = context.frame._binding) ⇒ Object



13
14
15
16
17
18
19
# File 'lib/byebug/helpers/var.rb', line 13

def var_list(ary, binding = context.frame._binding)
  vars = ary.sort.map do |name|
    [name, safe_inspect(silent_eval(name.to_s, binding))]
  end

  puts prv(vars, "instance")
end

#var_localObject



35
36
37
38
39
40
# File 'lib/byebug/helpers/var.rb', line 35

def var_local
  locals = context.frame.locals
  cur_self = context.frame._self
  locals[:self] = cur_self unless cur_self.to_s == "main"
  puts prv(locals.keys.sort.map { |k| [k, locals[k]] }, "instance")
end