class Puppet::Pops::Lookup::ExplainInvalidKey

Public Class Methods

new(parent, key) click to toggle source
    # File lib/puppet/pops/lookup/explainer.rb
177 def initialize(parent, key)
178   super(parent)
179   @key = key.to_s
180 end

Public Instance Methods

dump_on(io, indent, first_indent) click to toggle source
    # File lib/puppet/pops/lookup/explainer.rb
182 def dump_on(io, indent, first_indent)
183   io << first_indent << "Invalid key \"" << @key << "\"\n"
184 end
type() click to toggle source
    # File lib/puppet/pops/lookup/explainer.rb
186 def type
187   :invalid_key
188 end