Class: Puppet::Parser::AST::BlockExpression
- Inherits:
-
Branch
- Object
- Puppet::Parser::AST
- Branch
- Puppet::Parser::AST::BlockExpression
- Defined in:
- lib/puppet/parser/ast/block_expression.rb
Overview
Evaluates contained expressions, produce result of the last
Constant Summary
Constants inherited from Puppet::Parser::AST
Instance Attribute Summary
Attributes inherited from Branch
Attributes inherited from Puppet::Parser::AST
#file, #line, #parent, #pos, #scope
Instance Method Summary collapse
Methods inherited from Branch
Methods included from Enumerable
Methods inherited from Puppet::Parser::AST
#initialize, #inspect, #safeevaluate
Methods included from Util::MethodHelper
#requiredopts, #set_options, #symbolize_options
Methods included from Util::Errors
#adderrorcontext, #devfail, #error_context, #exceptwrap, #fail
Constructor Details
This class inherits a constructor from Puppet::Parser::AST::Branch
Instance Method Details
#evaluate(scope) ⇒ Object
4 5 6 |
# File 'lib/puppet/parser/ast/block_expression.rb', line 4 def evaluate(scope) @children.reduce(nil) { |_, child| child.safeevaluate(scope) } end |
#sequence_with(other) ⇒ Object
8 9 10 |
# File 'lib/puppet/parser/ast/block_expression.rb', line 8 def sequence_with(other) Puppet::Parser::AST::BlockExpression.new(:children => self.children + other.children) end |
#to_s ⇒ Object
12 13 14 |
# File 'lib/puppet/parser/ast/block_expression.rb', line 12 def to_s "[" + @children.collect { |c| c.to_s }.join(', ') + "]" end |