Class: Puppet::Pops::Lookup::ExplainInterpolate
Instance Attribute Summary
#event, #key, #parent, #value
Instance Method Summary
collapse
#dump_outcome, #dump_value, #found, #found_in_defaults, #found_in_overrides, #increase_indent, #module_not_found, #not_found, #path_not_found, #result
Methods inherited from ExplainNode
#branches, #to_s
Constructor Details
Returns a new instance of ExplainInterpolate.
137
138
139
140
|
# File 'lib/puppet/pops/lookup/explainer.rb', line 137
def initialize(parent, expression)
super(parent)
@expression = expression
end
|
Instance Method Details
#dump_on(io, indent, first_indent) ⇒ Object
142
143
144
145
146
|
# File 'lib/puppet/pops/lookup/explainer.rb', line 142
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
|
148
149
150
151
152
|
# File 'lib/puppet/pops/lookup/explainer.rb', line 148
def to_hash
hash = super
hash[:expression] = @expression
hash
end
|
154
155
156
|
# File 'lib/puppet/pops/lookup/explainer.rb', line 154
def type
:interpolate
end
|