| Server IP : 77.68.64.21 / Your IP : 216.73.217.145 Web Server : Apache System : Linux hp3-wp-1011352.hostingp3.local 3.10.0-1160.144.1.el7.tuxcare.els9.x86_64 #1 SMP Fri Jul 10 17:06:31 UTC 2026 x86_64 User : csh2516497 ( 2094697) PHP Version : 8.3.30 Disable Function : shell_exec,exec,system,popen,set_time_limit MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/ruby/vendor_ruby/puppet/parser/ast/ |
Upload File : |
require 'puppet/parser/ast/branch'
class Puppet::Parser::AST
class BlockExpression < Branch
include Enumerable
# Evaluate contained expressions, produce result of the last
def evaluate(scope)
result = nil
@children.each do |child|
result = child.safeevaluate(scope)
end
result
end
# Return a child by index.
def [](index)
@children[index]
end
def push(*ary)
ary.each { |child|
#Puppet.debug "adding %s(%s) of type %s to %s" %
# [child, child.object_id, child.class.to_s.sub(/.+::/,''),
# self.object_id]
@children.push(child)
}
self
end
def sequence_with(other)
Puppet::Parser::AST::BlockExpression.new(:children => self.children + other.children)
end
def to_s
"[" + @children.collect { |c| c.to_s }.join(', ') + "]"
end
end
end