blob: affac625d99858123cc3257ba1e6b23680f77ce3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
require 'puppet/parser/ast/branch'
class Puppet::Parser::AST
# A separate ElseIf statement; can function as an 'else' if there's no
# test.
class Else < AST::Branch
attr_accessor :statements
def each
yield @statements
end
# Evaluate the actual statements; this only gets called if
# our test was true matched.
def evaluate(scope)
return @statements.safeevaluate(scope)
end
end
end
|