Class: Puppet::Pops::Model::QualifiedReference

Inherits:
LiteralValue 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

#_pcore_all_contents, #_pcore_contents, #to_s

Methods included from Types::PuppetObject

#_pcore_all_contents, #_pcore_contents, #_pcore_type, #to_s

Constructor Details

#initialize(locator, offset, length, cased_value) ⇒ QualifiedReference

Returns a new instance of QualifiedReference.



3792
3793
3794
3795
3796
# File 'lib/puppet/pops/model/ast.rb', line 3792

def initialize(locator, offset, length, cased_value)
  super(locator, offset, length)
  @hash = @hash ^ cased_value.hash
  @cased_value = cased_value
end

Instance Attribute Details

#cased_valueObject (readonly)



3786
3787
3788
# File 'lib/puppet/pops/model/ast.rb', line 3786

def cased_value
  @cased_value
end

Class Method Details

._pcore_typeObject



3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
# File 'lib/puppet/pops/model/ast.rb', line 3749

def self._pcore_type
  @_pcore_type ||=
    Types::PObjectType
      .new('Puppet::AST::QualifiedReference', {
             'parent' => LiteralValue._pcore_type,
             'attributes' => {
               'cased_value' => Types::PStringType::DEFAULT,
               'value' => {
                 'type' => Types::PStringType::DEFAULT,
                 'kind' => 'derived'
               }
             }
           })
end

.create(locator, offset, length, cased_value) ⇒ Object



3776
3777
3778
3779
3780
3781
3782
3783
3784
# File 'lib/puppet/pops/model/ast.rb', line 3776

def self.create(locator, offset, length, cased_value)
  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::QualifiedReference[cased_value]', attrs['cased_value'].type, cased_value)
  new(locator, offset, length, cased_value)
end

.from_asserted_hash(init_hash) ⇒ Object



3768
3769
3770
3771
3772
3773
3774
# File 'lib/puppet/pops/model/ast.rb', line 3768

def self.from_asserted_hash(init_hash)
  new(
    init_hash['locator'],
    init_hash['offset'],
    init_hash['length'],
    init_hash['cased_value'])
end

.from_hash(init_hash) ⇒ Object



3764
3765
3766
# File 'lib/puppet/pops/model/ast.rb', line 3764

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

Instance Method Details

#_pcore_init_hashObject



3798
3799
3800
3801
3802
# File 'lib/puppet/pops/model/ast.rb', line 3798

def _pcore_init_hash
  result = super
  result['cased_value'] = @cased_value
  result
end

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

Returns:

  • (Boolean)


3804
3805
3806
3807
# File 'lib/puppet/pops/model/ast.rb', line 3804

def eql?(o)
  super &&
  @cased_value.eql?(o.cased_value)
end

#valueObject



3788
3789
3790
# File 'lib/puppet/pops/model/ast.rb', line 3788

def value
  @cased_value.downcase
end