# File lib/puppet/parser/ast/function.rb, line 45 45: def initialize(hash) 46: @ftype = hash[:ftype] || :rvalue 47: hash.delete(:ftype) if hash.include? :ftype 48: 49: super(hash) 50: 51: @fname = Puppet::Parser::Functions.function(@name) 52: # Lastly, check the parity 53: end