Class: Puppet::Pops::Model::QualifiedReference
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
#_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_value ⇒ Object
3786
3787
3788
|
# File 'lib/puppet/pops/model/ast.rb', line 3786
def cased_value
@cased_value
end
|
Class Method Details
.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_hash ⇒ Object
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:
==
3804
3805
3806
3807
|
# File 'lib/puppet/pops/model/ast.rb', line 3804
def eql?(o)
super &&
@cased_value.eql?(o.cased_value)
end
|
3788
3789
3790
|
# File 'lib/puppet/pops/model/ast.rb', line 3788
def value
@cased_value.downcase
end
|