class Puppet::Pops::Model::ExportedQuery
Public Class Methods
_pcore_type()
click to toggle source
# File lib/puppet/pops/model/ast.rb 1459 def self._pcore_type 1460 @_pcore_type ||= Types::PObjectType.new('Puppet::AST::ExportedQuery', { 1461 'parent' => QueryExpression._pcore_type 1462 }) 1463 end
Public Instance Methods
_pcore_all_contents(path, &block)
click to toggle source
# File lib/puppet/pops/model/ast.rb 1469 def _pcore_all_contents(path, &block) 1470 path << self 1471 unless @expr.nil? 1472 block.call(@expr, path) 1473 @expr._pcore_all_contents(path, &block) 1474 end 1475 path.pop 1476 end
_pcore_contents() { |expr| ... }
click to toggle source
# File lib/puppet/pops/model/ast.rb 1465 def _pcore_contents 1466 yield(@expr) unless @expr.nil? 1467 end