Class: Puppet::Pops::Model::CallFunctionExpression
- Inherits:
-
CallExpression
- Object
- PopsObject
- Positioned
- Expression
- CallExpression
- Puppet::Pops::Model::CallFunctionExpression
- Defined in:
- lib/puppet/pops/model/ast.rb
Instance Attribute Summary
Attributes inherited from CallExpression
#arguments, #functor_expr, #lambda, #rval_required
Attributes inherited from Positioned
Attributes inherited from PopsObject
Class Method Summary collapse
Instance Method Summary collapse
Methods inherited from CallExpression
#_pcore_init_hash, create, #eql?, from_asserted_hash, from_hash, #initialize
Methods inherited from Positioned
#_pcore_init_hash, create, #file, from_asserted_hash, from_hash, #initialize, #line, #pos
Methods inherited from PopsObject
#_pcore_init_hash, create, #eql?, from_asserted_hash, from_hash, #initialize, #to_s
Methods included from Types::PuppetObject
#_pcore_init_hash, #_pcore_type, #to_s
Constructor Details
This class inherits a constructor from Puppet::Pops::Model::CallExpression
Class Method Details
._pcore_type ⇒ Object
3048 3049 3050 3051 3052 |
# File 'lib/puppet/pops/model/ast.rb', line 3048 def self._pcore_type @_pcore_type ||= Types::PObjectType.new('Puppet::AST::CallFunctionExpression', { 'parent' => CallExpression._pcore_type }) end |
Instance Method Details
#_pcore_all_contents(path, &block) ⇒ Object
3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 |
# File 'lib/puppet/pops/model/ast.rb', line 3060 def _pcore_all_contents(path, &block) path << self unless @functor_expr.nil? block.call(@functor_expr, path) @functor_expr._pcore_all_contents(path, &block) end @arguments.each do |value| block.call(value, path) value._pcore_all_contents(path, &block) end unless @lambda.nil? block.call(@lambda, path) @lambda._pcore_all_contents(path, &block) end path.pop end |
#_pcore_contents {|@functor_expr| ... } ⇒ Object
3054 3055 3056 3057 3058 |
# File 'lib/puppet/pops/model/ast.rb', line 3054 def _pcore_contents yield(@functor_expr) unless @functor_expr.nil? @arguments.each { |value| yield(value) } yield(@lambda) unless @lambda.nil? end |