Sha256: ab2fae3fb4d61e5ee6b8ceae3ed4604b4ff38d11f0acfb355e5dfabe9656ce1e
Contents?: true
Size: 1.26 KB
Versions: 4
Compression:
Stored size: 1.26 KB
Contents
require 'puppet/parser/ast/branch' class Puppet::Parser::AST # A basic 'if/elsif/else' statement. class IfStatement < AST::Branch attr_accessor :test, :else, :statements def each [@test,@else,@statements].each { |child| yield child } end # Short-curcuit evaluation. If we're true, evaluate our statements, # else if there's an 'else' setting, evaluate it. # the first option that matches. def evaluate(hash) scope = hash[:scope] value = @test.safeevaluate(:scope => scope) if Puppet::Parser::Scope.true?(value) return @statements.safeevaluate(:scope => scope) else if defined? @else return @else.safeevaluate(:scope => scope) else return nil end end end def tree(indent = 0) rettree = [ @test.tree(indent + 1), ((@@indline * indent) + self.typewrap(self.pin)), @statements.tree(indent + 1), @else.tree(indent + 1) ] return rettree.flatten.join("\n") end end end # $Id: ifstatement.rb 1780 2006-10-15 20:07:29Z luke $
Version data entries
4 entries across 4 versions & 1 rubygems