class Puppet::Pops::Lookup::ExplainInvalidKey

Public Class Methods

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

Public Instance Methods

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