Sha256: 258f25a823643f9d8e8efe52521b9c0633b97170ae64a9029ca3ed66c1ad3fbc
Contents?: true
Size: 845 Bytes
Versions: 251
Compression:
Stored size: 845 Bytes
Contents
# The AST object for the parameters inside resource expressions # class Puppet::Parser::AST::ResourceParam < Puppet::Parser::AST::Branch attr_accessor :value, :param, :add def initialize(argshash) Puppet.warn_once('deprecations', 'AST::ResourceParam', _('Use of Puppet::Parser::AST::ResourceParam is deprecated and not fully functional')) super(argshash) end def each [@param, @value].each { |child| yield child } end # Return the parameter and the value. def evaluate(scope) value = @value.safeevaluate(scope) return Puppet::Parser::Resource::Param.new( :name => @param, :value => value.nil? ? :undef : value, :source => scope.source, :line => self.line, :file => self.file, :add => self.add ) end def to_s "#{@param} => #{@value.to_s}" end end
Version data entries
251 entries across 251 versions & 2 rubygems