PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
| Dir : /opt/puppetlabs/puppet/lib/ruby/vendor_ruby/puppet/parser/ |
| Server: Linux server1.ngambekcore.com 4.18.0-553.51.1.el8_10.x86_64 #1 SMP Wed Apr 30 04:00:07 EDT 2025 x86_64 IP: 159.198.77.92 |
| Dir : //opt/puppetlabs/puppet/lib/ruby/vendor_ruby/puppet/parser/abstract_compiler.rb |
module Puppet::Parser::AbstractCompiler
# Returns the catalog for a compilation. Must return a Puppet::Resource::Catalog or fail with an
# error if the specific compiler does not support catalog operations.
#
def catalog
raise Puppet::DevError("Class '#{self.class}' should have implemented 'catalog'")
end
# Returns the environment for the compilation
#
def environment
raise Puppet::DevError("Class '#{self.class}' should have implemented 'environment'")
end
# Produces a new scope
# This method is here if there are functions/logic that will call this for some other purpose than to create
# a named scope for a class. It may not have to be here. (TODO)
#
def newscope(scope, options)
raise Puppet::DevError("Class '#{self.class}' should have implemented 'newscope'")
end
# Returns a hash of all externally referenceable qualified variables
#
def qualified_variables
raise Puppet::DevError("Class '#{self.class}' should have implemented 'qualified_variables'")
end
# Returns the top scope instance
def topscope
raise Puppet::DevError("Class '#{self.class}' should have implemented 'topscope'")
end
end