Class: Puppet::Pops::Model::LiteralInteger
- Inherits:
-
LiteralNumber
- Object
- PopsObject
- Positioned
- Expression
- Literal
- LiteralValue
- LiteralNumber
- Puppet::Pops::Model::LiteralInteger
- Defined in:
- lib/puppet/pops/model/ast.rb
Instance Attribute Summary collapse
- #radix ⇒ Object readonly
- #value ⇒ Object readonly
Attributes inherited from Positioned
Attributes inherited from PopsObject
Class Method Summary collapse
- ._pcore_type ⇒ Object
- .create(locator, offset, length, value, radix = 10) ⇒ Object
- .from_asserted_hash(init_hash) ⇒ Object
- .from_hash(init_hash) ⇒ Object
Instance Method Summary collapse
- #_pcore_init_hash ⇒ Object
- #eql?(o) ⇒ Boolean (also: #==)
-
#initialize(locator, offset, length, value, radix = 10) ⇒ LiteralInteger
constructor
A new instance of LiteralInteger.
Methods inherited from Positioned
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, value, radix = 10) ⇒ LiteralInteger
Returns a new instance of LiteralInteger.
3388 3389 3390 3391 3392 3393 |
# File 'lib/puppet/pops/model/ast.rb', line 3388 def initialize(locator, offset, length, value, radix = 10) super(locator, offset, length) @hash = @hash ^ radix.hash ^ value.hash @radix = radix @value = value end |
Instance Attribute Details
#radix ⇒ Object (readonly)
3385 3386 3387 |
# File 'lib/puppet/pops/model/ast.rb', line 3385 def radix @radix end |
#value ⇒ Object (readonly)
3386 3387 3388 |
# File 'lib/puppet/pops/model/ast.rb', line 3386 def value @value end |
Class Method Details
._pcore_type ⇒ Object
3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 |
# File 'lib/puppet/pops/model/ast.rb', line 3346 def self._pcore_type @_pcore_type ||= Types::PObjectType .new('Puppet::AST::LiteralInteger', { 'parent' => LiteralNumber._pcore_type, 'attributes' => { 'radix' => { 'type' => Types::PIntegerType::DEFAULT, 'value' => 10 }, 'value' => Types::PIntegerType::DEFAULT } }) end |
.create(locator, offset, length, value, radix = 10) ⇒ Object
3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 |
# File 'lib/puppet/pops/model/ast.rb', line 3374 def self.create(locator, offset, length, value, radix = 10) 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::LiteralInteger[radix]', attrs['radix'].type, radix) ta.assert_instance_of('Puppet::AST::LiteralInteger[value]', attrs['value'].type, value) new(locator, offset, length, value, radix) end |
.from_asserted_hash(init_hash) ⇒ Object
3365 3366 3367 3368 3369 3370 3371 3372 |
# File 'lib/puppet/pops/model/ast.rb', line 3365 def self.from_asserted_hash(init_hash) new( init_hash['locator'], init_hash['offset'], init_hash['length'], init_hash['value'], init_hash.fetch('radix') { 10 }) end |
.from_hash(init_hash) ⇒ Object
3361 3362 3363 |
# File 'lib/puppet/pops/model/ast.rb', line 3361 def self.from_hash(init_hash) from_asserted_hash(Types::TypeAsserter.assert_instance_of('Puppet::AST::LiteralInteger initializer', _pcore_type.init_hash_type, init_hash)) end |
Instance Method Details
#_pcore_init_hash ⇒ Object
3395 3396 3397 3398 3399 3400 |
# File 'lib/puppet/pops/model/ast.rb', line 3395 def _pcore_init_hash result = super result['radix'] = @radix unless @radix == 10 result['value'] = @value result end |
#eql?(o) ⇒ Boolean Also known as: ==
3402 3403 3404 3405 3406 |
# File 'lib/puppet/pops/model/ast.rb', line 3402 def eql?(o) super && @radix.eql?(o.radix) && @value.eql?(o.value) end |