Class: Puppet::Pops::Model::LiteralString

Inherits:
LiteralValue show all
Defined in:
lib/puppet/pops/model/ast.rb

Direct Known Subclasses

RenderStringExpression

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) ⇒ LiteralString

Returns a new instance of LiteralString.



3250
3251
3252
3253
3254
# File 'lib/puppet/pops/model/ast.rb', line 3250

def initialize(locator, offset, length, value)
  super(locator, offset, length)
  @hash = @hash ^ value.hash
  @value = value
end

Instance Attribute Details

#valueObject (readonly)



3248
3249
3250
# File 'lib/puppet/pops/model/ast.rb', line 3248

def value
  @value
end

Class Method Details

._pcore_typeObject



3217
3218
3219
3220
3221
3222
3223
3224
# File 'lib/puppet/pops/model/ast.rb', line 3217

def self._pcore_type
  @_pcore_type ||= Types::PObjectType.new('Puppet::AST::LiteralString', {
    'parent' => LiteralValue._pcore_type,
    'attributes' => {
      'value' => Types::PStringType::DEFAULT
    }
  })
end

.create(locator, offset, length, value) ⇒ Object



3238
3239
3240
3241
3242
3243
3244
3245
3246
# File 'lib/puppet/pops/model/ast.rb', line 3238

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::LiteralString[value]', attrs['value'].type, value)
  new(locator, offset, length, value)
end

.from_asserted_hash(init_hash) ⇒ Object



3230
3231
3232
3233
3234
3235
3236
# File 'lib/puppet/pops/model/ast.rb', line 3230

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



3226
3227
3228
# File 'lib/puppet/pops/model/ast.rb', line 3226

def self.from_hash(init_hash)
  from_asserted_hash(Types::TypeAsserter.assert_instance_of('Puppet::AST::LiteralString initializer', _pcore_type.init_hash_type, init_hash))
end

Instance Method Details

#_pcore_init_hashObject



3256
3257
3258
3259
3260
# File 'lib/puppet/pops/model/ast.rb', line 3256

def _pcore_init_hash
  result = super
  result['value'] = @value
  result
end

#eql?(o) ⇒ Boolean Also known as: ==

Returns:

  • (Boolean)


3262
3263
3264
3265
# File 'lib/puppet/pops/model/ast.rb', line 3262

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