Class: Puppet::Pops::Lookup::ExplainInterpolate Private

Inherits:
ExplainTreeNode show all
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

#event, #key, #parent, #value

Instance Method Summary collapse

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, expression) ⇒ ExplainInterpolate

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 ExplainInterpolate.



241
242
243
244
# File 'lib/puppet/pops/lookup/explainer.rb', line 241

def initialize(parent, expression)
  super(parent)
  @expression = expression
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.



246
247
248
249
250
# File 'lib/puppet/pops/lookup/explainer.rb', line 246

def dump_on(io, indent, first_indent)
  io << first_indent << 'Interpolation on "' << @expression << "\"\n"
  indent = increase_indent(indent)
  branches.each { |b| b.dump_on(io, indent, indent) }
end

#to_hashObject

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.



252
253
254
255
256
# File 'lib/puppet/pops/lookup/explainer.rb', line 252

def to_hash
  hash = super
  hash[:expression] = @expression
  hash
end

#typeObject

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.



258
259
260
# File 'lib/puppet/pops/lookup/explainer.rb', line 258

def type
  :interpolate
end