blob: d216b7c652ec8bcf794d4a1ef30e309e3219a710 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
require 'puppet/parser/ast/branch'
class Puppet::Parser::AST
# A basic 'if/elsif/else' statement.
class IfStatement < AST::Branch
associates_doc
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(scope)
value = @test.safeevaluate(scope)
if Puppet::Parser::Scope.true?(value)
return @statements.safeevaluate(scope)
else
if defined? @else
return @else.safeevaluate(scope)
else
return nil
end
end
end
end
end
|