Class: Puppet::Pops::Model::VirtualQuery

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

Instance Attribute Summary

Attributes inherited from QueryExpression

#expr

Attributes inherited from Positioned

#length, #locator, #offset

Attributes inherited from PopsObject

#hash

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from QueryExpression

#_pcore_init_hash, create, #eql?, from_asserted_hash, from_hash, #initialize

Methods inherited from Positioned

#_pcore_init_hash, create, #file, from_asserted_hash, from_hash, #initialize, #line, #pos

Methods inherited from PopsObject

#_pcore_init_hash, create, #eql?, from_asserted_hash, from_hash, #initialize, #to_s

Methods included from Types::PuppetObject

#_pcore_init_hash, #_pcore_type, #to_s

Constructor Details

This class inherits a constructor from Puppet::Pops::Model::QueryExpression

Class Method Details

._pcore_typeObject



1480
1481
1482
1483
1484
# File 'lib/puppet/pops/model/ast.rb', line 1480

def self._pcore_type
  @_pcore_type ||= Types::PObjectType.new('Puppet::AST::VirtualQuery', {
    'parent' => QueryExpression._pcore_type
  })
end

Instance Method Details

#_pcore_all_contents(path, &block) ⇒ Object



1490
1491
1492
1493
1494
1495
1496
1497
# File 'lib/puppet/pops/model/ast.rb', line 1490

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

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

Yields:



1486
1487
1488
# File 'lib/puppet/pops/model/ast.rb', line 1486

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