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

Constructor Details

#initialize(locator, offset, length, value, radix = 10) ⇒ LiteralInteger

Returns a new instance of LiteralInteger.



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

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)



3382
3383
3384
# File 'lib/puppet/pops/model/ast.rb', line 3382

def radix
  @radix
end

#valueObject (readonly)



3383
3384
3385
# File 'lib/puppet/pops/model/ast.rb', line 3383

def value
  @value
end

Class Method Details

._pcore_typeObject



3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
# File 'lib/puppet/pops/model/ast.rb', line 3345

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



3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
# File 'lib/puppet/pops/model/ast.rb', line 3371

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



3362
3363
3364
3365
3366
3367
3368
3369
# File 'lib/puppet/pops/model/ast.rb', line 3362

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



3358
3359
3360
# File 'lib/puppet/pops/model/ast.rb', line 3358

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



3392
3393
3394
3395
3396
3397
# File 'lib/puppet/pops/model/ast.rb', line 3392

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)


3399
3400
3401
3402
3403
# File 'lib/puppet/pops/model/ast.rb', line 3399

def eql?(o)
  super &&
  @radix.eql?(o.radix) &&
  @value.eql?(o.value)
end