module Recursivar::Formats::TextWithoutColor

Public Instance Methods

children_for_tree_graph() click to toggle source
# File lib/recursivar/formats.rb, line 18
def children_for_tree_graph
  vars
end
label_for_tree_graph() click to toggle source
# File lib/recursivar/formats.rb, line 12
def label_for_tree_graph
  label = "#{name} (#{obj.class})"
  return label unless ref
  "#{label} #{ref.location_str}"
end
to_s() click to toggle source
# File lib/recursivar/formats.rb, line 22
def to_s
  tree_graph
end