class Puppet::Pops::Model::ExportedQuery

Public Class Methods

_pcore_type() click to toggle source
     # File lib/puppet/pops/model/ast.rb
1460 def self._pcore_type
1461   @_pcore_type ||= Types::PObjectType.new('Puppet::AST::ExportedQuery', {
1462     'parent' => QueryExpression._pcore_type
1463   })
1464 end

Public Instance Methods

_pcore_all_contents(path, &block) click to toggle source
     # File lib/puppet/pops/model/ast.rb
1470 def _pcore_all_contents(path, &block)
1471   path << self
1472   unless @expr.nil?
1473     block.call(@expr, path)
1474     @expr._pcore_all_contents(path, &block)
1475   end
1476   path.pop
1477 end
_pcore_contents() { |expr| ... } click to toggle source
     # File lib/puppet/pops/model/ast.rb
1466 def _pcore_contents
1467   yield(@expr) unless @expr.nil?
1468 end