Class: Puppet::Pops::Model::QualifiedName
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, value) ⇒ QualifiedName
Returns a new instance of QualifiedName.
3586
3587
3588
3589
3590
|
# File 'lib/puppet/pops/model/ast.rb', line 3586
def initialize(locator, offset, length, value)
super(locator, offset, length)
@hash = @hash ^ value.hash
@value = value
end
|
Instance Attribute Details
3584
3585
3586
|
# File 'lib/puppet/pops/model/ast.rb', line 3584
def value
@value
end
|
Class Method Details
.create(locator, offset, length, value) ⇒ Object
3574
3575
3576
3577
3578
3579
3580
3581
3582
|
# File 'lib/puppet/pops/model/ast.rb', line 3574
def self.create(locator, offset, length, 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::QualifiedName[value]', attrs['value'].type, value)
new(locator, offset, length, value)
end
|
.from_asserted_hash(init_hash) ⇒ Object
3566
3567
3568
3569
3570
3571
3572
|
# File 'lib/puppet/pops/model/ast.rb', line 3566
def self.from_asserted_hash(init_hash)
new(
init_hash['locator'],
init_hash['offset'],
init_hash['length'],
init_hash['value'])
end
|
.from_hash(init_hash) ⇒ Object
3562
3563
3564
|
# File 'lib/puppet/pops/model/ast.rb', line 3562
def self.from_hash(init_hash)
from_asserted_hash(Types::TypeAsserter.assert_instance_of('Puppet::AST::QualifiedName initializer', _pcore_type.init_hash_type, init_hash))
end
|
Instance Method Details
#_pcore_init_hash ⇒ Object
3592
3593
3594
3595
3596
|
# File 'lib/puppet/pops/model/ast.rb', line 3592
def _pcore_init_hash
result = super
result['value'] = @value
result
end
|
#eql?(o) ⇒ Boolean
Also known as:
==
3598
3599
3600
3601
|
# File 'lib/puppet/pops/model/ast.rb', line 3598
def eql?(o)
super &&
@value.eql?(o.value)
end
|