A separate ElseIf statement; can function as an ‘else’ if there’s no test.
# File lib/puppet/parser/ast/else.rb, line 12 def each yield @statements end
Evaluate the actual statements; this only gets called if our test was true matched.
# File lib/puppet/parser/ast/else.rb, line 18 def evaluate(scope) @statements.safeevaluate(scope) end