Class: Puppet::Pops::Model::CallNamedFunctionExpression
- Inherits:
-
CallExpression
- Object
- PopsObject
- Positioned
- Expression
- CallExpression
- Puppet::Pops::Model::CallNamedFunctionExpression
- 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
3143 3144 3145 3146 3147 |
# File 'lib/puppet/pops/model/ast.rb', line 3143 def self._pcore_type @_pcore_type ||= Types::PObjectType.new('Puppet::AST::CallNamedFunctionExpression', { 'parent' => CallExpression._pcore_type }) end |
Instance Method Details
#_pcore_all_contents(path, &block) ⇒ Object
3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 |
# File 'lib/puppet/pops/model/ast.rb', line 3155 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
3149 3150 3151 3152 3153 |
# File 'lib/puppet/pops/model/ast.rb', line 3149 def _pcore_contents yield(@functor_expr) unless @functor_expr.nil? @arguments.each { |value| yield(value) } yield(@lambda) unless @lambda.nil? end |