Class: Puppet::Pops::Model::ApplyExpression

Inherits:
Expression show all
Defined in:
lib/puppet/pops/model/ast.rb

Instance Attribute Summary collapse

Attributes inherited from Positioned

#length, #locator, #offset

Attributes inherited from PopsObject

#hash

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Positioned

#file, #line, #pos

Methods inherited from PopsObject

#to_s

Methods included from Types::PuppetObject

#_pcore_type, #to_s

Constructor Details

#initialize(locator, offset, length, arguments = _pcore_type['arguments'].value, body = nil) ⇒ ApplyExpression

Returns a new instance of ApplyExpression.



2834
2835
2836
2837
2838
2839
# File 'lib/puppet/pops/model/ast.rb', line 2834

def initialize(locator, offset, length, arguments = _pcore_type['arguments'].value, body = nil)
  super(locator, offset, length)
  @hash = @hash ^ arguments.hash ^ body.hash
  @arguments = arguments
  @body = body
end

Instance Attribute Details

#argumentsObject (readonly)



2831
2832
2833
# File 'lib/puppet/pops/model/ast.rb', line 2831

def arguments
  @arguments
end

#bodyObject (readonly)



2832
2833
2834
# File 'lib/puppet/pops/model/ast.rb', line 2832

def body
  @body
end

Class Method Details

._pcore_typeObject



2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
# File 'lib/puppet/pops/model/ast.rb', line 2789

def self._pcore_type
  @_pcore_type ||=
    Types::PObjectType
      .new('Puppet::AST::ApplyExpression', {
             'parent' => Expression._pcore_type,
             'attributes' => {
               'arguments' => {
                 'type' => Types::PArrayType.new(Expression._pcore_type),
                 'value' => []
               },
               'body' => {
                 'type' => Types::POptionalType.new(Expression._pcore_type),
                 'value' => nil
               }
             }
           })
end

.create(locator, offset, length, arguments = _pcore_type['arguments'].value, body = nil) ⇒ Object



2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
# File 'lib/puppet/pops/model/ast.rb', line 2820

def self.create(locator, offset, length, arguments = _pcore_type['arguments'].value, body = nil)
  ta = Types::TypeAsserter
  attrs = _pcore_type.attributes(true)
  ta.assert_instance_of('Puppet::AST::Positioned[locator]', attrs['locator'].type, locator)
  ta.assert_instance_of('Puppet::AST::Positioned[offset]', attrs['offset'].type, offset)
  ta.assert_instance_of('Puppet::AST::Positioned[length]', attrs['length'].type, length)
  ta.assert_instance_of('Puppet::AST::ApplyExpression[arguments]', attrs['arguments'].type, arguments)
  ta.assert_instance_of('Puppet::AST::ApplyExpression[body]', attrs['body'].type, body)
  new(locator, offset, length, arguments, body)
end

.from_asserted_hash(init_hash) ⇒ Object



2811
2812
2813
2814
2815
2816
2817
2818
# File 'lib/puppet/pops/model/ast.rb', line 2811

def self.from_asserted_hash(init_hash)
  new(
    init_hash['locator'],
    init_hash['offset'],
    init_hash['length'],
    init_hash.fetch('arguments') { _pcore_type['arguments'].value },
    init_hash['body'])
end

.from_hash(init_hash) ⇒ Object



2807
2808
2809
# File 'lib/puppet/pops/model/ast.rb', line 2807

def self.from_hash(init_hash)
  from_asserted_hash(Types::TypeAsserter.assert_instance_of('Puppet::AST::ApplyExpression initializer', _pcore_type.init_hash_type, init_hash))
end

Instance Method Details

#_pcore_all_contents(path, &block) ⇒ Object



2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
# File 'lib/puppet/pops/model/ast.rb', line 2853

def _pcore_all_contents(path, &block)
  path << self
  @arguments.each do |value|
    block.call(value, path)
    value._pcore_all_contents(path, &block)
  end
  unless @body.nil?
    block.call(@body, path)
    @body._pcore_all_contents(path, &block)
  end
  path.pop
end

#_pcore_contents {|@body| ... } ⇒ Object

Yields:



2848
2849
2850
2851
# File 'lib/puppet/pops/model/ast.rb', line 2848

def _pcore_contents
  @arguments.each { |value| yield(value) }
  yield(@body) unless @body.nil?
end

#_pcore_init_hashObject



2841
2842
2843
2844
2845
2846
# File 'lib/puppet/pops/model/ast.rb', line 2841

def _pcore_init_hash
  result = super
  result['arguments'] = @arguments unless _pcore_type['arguments'].default_value?(@arguments)
  result['body'] = @body unless @body == nil
  result
end

#eql?(o) ⇒ Boolean Also known as: ==

Returns:

  • (Boolean)


2866
2867
2868
2869
2870
# File 'lib/puppet/pops/model/ast.rb', line 2866

def eql?(o)
  super &&
  @arguments.eql?(o.arguments) &&
  @body.eql?(o.body)
end