Method: Puppet::Pops::Lookup::ExplainTop#dump_on

Defined in:
lib/puppet/pops/lookup/explainer.rb

#dump_on(io, indent, first_indent) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



169
170
171
172
173
# File 'lib/puppet/pops/lookup/explainer.rb', line 169

def dump_on(io, indent, first_indent)
  io << first_indent << 'Searching for "' << key << "\"\n"
  indent = increase_indent(indent)
  branches.each {|b| b.dump_on(io, indent, indent)}
end