Class: Puppet::Pops::Model::TypeMapping
- Inherits:
-
Definition
- Object
- PopsObject
- Positioned
- Expression
- Definition
- Puppet::Pops::Model::TypeMapping
- Defined in:
- lib/puppet/pops/model/ast.rb
Instance Attribute Summary collapse
- #mapping_expr ⇒ Object readonly
- #type_expr ⇒ Object readonly
Attributes inherited from Positioned
Attributes inherited from PopsObject
Class Method Summary collapse
- ._pcore_type ⇒ Object
- .create(locator, offset, length, type_expr = nil, mapping_expr = nil) ⇒ Object
- .from_asserted_hash(init_hash) ⇒ Object
- .from_hash(init_hash) ⇒ Object
Instance Method Summary collapse
- #_pcore_all_contents(path, &block) ⇒ Object
- #_pcore_contents {|@type_expr| ... } ⇒ Object
- #_pcore_init_hash ⇒ Object
- #eql?(o) ⇒ Boolean (also: #==)
-
#initialize(locator, offset, length, type_expr = nil, mapping_expr = nil) ⇒ TypeMapping
constructor
A new instance of TypeMapping.
Methods inherited from Positioned
Methods inherited from PopsObject
Methods included from Types::PuppetObject
Constructor Details
#initialize(locator, offset, length, type_expr = nil, mapping_expr = nil) ⇒ TypeMapping
Returns a new instance of TypeMapping.
2244 2245 2246 2247 2248 2249 |
# File 'lib/puppet/pops/model/ast.rb', line 2244 def initialize(locator, offset, length, type_expr = nil, mapping_expr = nil) super(locator, offset, length) @hash = @hash ^ type_expr.hash ^ mapping_expr.hash @type_expr = type_expr @mapping_expr = mapping_expr end |
Instance Attribute Details
#mapping_expr ⇒ Object (readonly)
2242 2243 2244 |
# File 'lib/puppet/pops/model/ast.rb', line 2242 def mapping_expr @mapping_expr end |
#type_expr ⇒ Object (readonly)
2241 2242 2243 |
# File 'lib/puppet/pops/model/ast.rb', line 2241 def type_expr @type_expr end |
Class Method Details
._pcore_type ⇒ Object
2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 |
# File 'lib/puppet/pops/model/ast.rb', line 2201 def self._pcore_type @_pcore_type ||= Types::PObjectType.new('Puppet::AST::TypeMapping', { 'parent' => Definition._pcore_type, 'attributes' => { 'type_expr' => { 'type' => Types::POptionalType.new(Expression._pcore_type), 'value' => nil }, 'mapping_expr' => { 'type' => Types::POptionalType.new(Expression._pcore_type), 'value' => nil } } }) end |
.create(locator, offset, length, type_expr = nil, mapping_expr = nil) ⇒ Object
2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 |
# File 'lib/puppet/pops/model/ast.rb', line 2230 def self.create(locator, offset, length, type_expr = nil, mapping_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::TypeMapping[type_expr]', attrs['type_expr'].type, type_expr) ta.assert_instance_of('Puppet::AST::TypeMapping[mapping_expr]', attrs['mapping_expr'].type, mapping_expr) new(locator, offset, length, type_expr, mapping_expr) end |
.from_asserted_hash(init_hash) ⇒ Object
2221 2222 2223 2224 2225 2226 2227 2228 |
# File 'lib/puppet/pops/model/ast.rb', line 2221 def self.from_asserted_hash(init_hash) new( init_hash['locator'], init_hash['offset'], init_hash['length'], init_hash['type_expr'], init_hash['mapping_expr']) end |
.from_hash(init_hash) ⇒ Object
2217 2218 2219 |
# File 'lib/puppet/pops/model/ast.rb', line 2217 def self.from_hash(init_hash) from_asserted_hash(Types::TypeAsserter.assert_instance_of('Puppet::AST::TypeMapping initializer', _pcore_type.init_hash_type, init_hash)) end |
Instance Method Details
#_pcore_all_contents(path, &block) ⇒ Object
2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 |
# File 'lib/puppet/pops/model/ast.rb', line 2263 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 unless @mapping_expr.nil? block.call(@mapping_expr, path) @mapping_expr._pcore_all_contents(path, &block) end path.pop end |
#_pcore_contents {|@type_expr| ... } ⇒ Object
2258 2259 2260 2261 |
# File 'lib/puppet/pops/model/ast.rb', line 2258 def _pcore_contents yield(@type_expr) unless @type_expr.nil? yield(@mapping_expr) unless @mapping_expr.nil? end |
#_pcore_init_hash ⇒ Object
2251 2252 2253 2254 2255 2256 |
# File 'lib/puppet/pops/model/ast.rb', line 2251 def _pcore_init_hash result = super result['type_expr'] = @type_expr unless @type_expr == nil result['mapping_expr'] = @mapping_expr unless @mapping_expr == nil result end |
#eql?(o) ⇒ Boolean Also known as: ==
2276 2277 2278 2279 2280 |
# File 'lib/puppet/pops/model/ast.rb', line 2276 def eql?(o) super && @type_expr.eql?(o.type_expr) && @mapping_expr.eql?(o.mapping_expr) end |