Class: Puppet::Pops::Model::LiteralInteger

Inherits:
LiteralNumber 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, 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

#radixObject (readonly)



3385
3386
3387
# File 'lib/puppet/pops/model/ast.rb', line 3385

def radix
  @radix
end

#valueObject (readonly)



3386
3387
3388
# File 'lib/puppet/pops/model/ast.rb', line 3386

def value
  @value
end

Class Method Details

._pcore_typeObject



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_hashObject



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: ==

Returns:

  • (Boolean)


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