Class: Puppet::Pops::Model::TypeAlias

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

Instance Attribute Summary collapse

Attributes inherited from QRefDefinition

#name

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

#to_s

Methods included from Types::PuppetObject

#_pcore_type, #to_s

Constructor Details

#initialize(locator, offset, length, name, type_expr = nil) ⇒ TypeAlias

Returns a new instance of TypeAlias.



2176
2177
2178
2179
2180
# File 'lib/puppet/pops/model/ast.rb', line 2176

def initialize(locator, offset, length, name, type_expr = nil)
  super(locator, offset, length, name)
  @hash = @hash ^ type_expr.hash
  @type_expr = type_expr
end

Instance Attribute Details

#type_exprObject (readonly)



2174
2175
2176
# File 'lib/puppet/pops/model/ast.rb', line 2174

def type_expr
  @type_expr
end

Class Method Details

._pcore_typeObject



2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
# File 'lib/puppet/pops/model/ast.rb', line 2138

def self._pcore_type
  @_pcore_type ||= Types::PObjectType.new('Puppet::AST::TypeAlias', {
    'parent' => QRefDefinition._pcore_type,
    'attributes' => {
      'type_expr' => {
        'type' => Types::POptionalType.new(Expression._pcore_type),
        'value' => nil
      }
    }
  })
end

.create(locator, offset, length, name, type_expr = nil) ⇒ Object



2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
# File 'lib/puppet/pops/model/ast.rb', line 2163

def self.create(locator, offset, length, name, type_expr = nil)
  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::QRefDefinition[name]', attrs['name'].type, name)
  ta.assert_instance_of('Puppet::AST::TypeAlias[type_expr]', attrs['type_expr'].type, type_expr)
  new(locator, offset, length, name, type_expr)
end

.from_asserted_hash(init_hash) ⇒ Object



2154
2155
2156
2157
2158
2159
2160
2161
# File 'lib/puppet/pops/model/ast.rb', line 2154

def self.from_asserted_hash(init_hash)
  new(
    init_hash['locator'],
    init_hash['offset'],
    init_hash['length'],
    init_hash['name'],
    init_hash['type_expr'])
end

.from_hash(init_hash) ⇒ Object



2150
2151
2152
# File 'lib/puppet/pops/model/ast.rb', line 2150

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

Instance Method Details

#_pcore_all_contents(path, &block) ⇒ Object



2192
2193
2194
2195
2196
2197
2198
2199
# File 'lib/puppet/pops/model/ast.rb', line 2192

def _pcore_all_contents(path, &block)
  path << self
  unless @type_expr.nil?
    block.call(@type_expr, path)
    @type_expr._pcore_all_contents(path, &block)
  end
  path.pop
end

#_pcore_contents {|@type_expr| ... } ⇒ Object

Yields:



2188
2189
2190
# File 'lib/puppet/pops/model/ast.rb', line 2188

def _pcore_contents
  yield(@type_expr) unless @type_expr.nil?
end

#_pcore_init_hashObject



2182
2183
2184
2185
2186
# File 'lib/puppet/pops/model/ast.rb', line 2182

def _pcore_init_hash
  result = super
  result['type_expr'] = @type_expr unless @type_expr == nil
  result
end

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

Returns:

  • (Boolean)


2201
2202
2203
2204
# File 'lib/puppet/pops/model/ast.rb', line 2201

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