Class: Puppet::Pops::Lookup::ExplainScope Private
- Inherits:
-
ExplainTreeNode
- Object
- ExplainNode
- ExplainTreeNode
- Puppet::Pops::Lookup::ExplainScope
- Defined in:
- lib/puppet/pops/lookup/explainer.rb
This class is part of a private API. You should avoid using this class if possible, as it may be removed or be changed in the future.
Instance Attribute Summary
Attributes inherited from ExplainTreeNode
Instance Method Summary collapse
- #dump_on(io, indent, first_indent) ⇒ Object private
-
#initialize(parent, name) ⇒ ExplainScope
constructor
private
A new instance of ExplainScope.
- #to_hash ⇒ Object private
- #type ⇒ Object private
Methods inherited from ExplainTreeNode
#dump_outcome, #dump_value, #found, #found_in_defaults, #found_in_overrides, #increase_indent, #location_not_found, #not_found, #result, #to_s
Methods inherited from ExplainNode
#branches, #dump_texts, #explain, #inspect, #text, #to_s
Constructor Details
#initialize(parent, name) ⇒ ExplainScope
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.
Returns a new instance of ExplainScope.
441 442 443 444 |
# File 'lib/puppet/pops/lookup/explainer.rb', line 441 def initialize(parent, name) super(parent) @name = name end |
Instance Method Details
#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.
446 447 448 449 450 451 |
# File 'lib/puppet/pops/lookup/explainer.rb', line 446 def dump_on(io, indent, first_indent) io << indent << @name << "\n" indent = increase_indent(indent) branches.each { |b| b.dump_on(io, indent, indent) } dump_outcome(io, indent) end |
#to_hash ⇒ 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.
453 454 455 456 457 |
# File 'lib/puppet/pops/lookup/explainer.rb', line 453 def to_hash hash = super hash[:name] = @name hash end |
#type ⇒ 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.
459 460 461 |
# File 'lib/puppet/pops/lookup/explainer.rb', line 459 def type :scope end |