Class: QueryNode

Inherits:
Treetop::Runtime::SyntaxNode
  • Object
show all
Defined in:
lib/texticle/nodes/query_node.rb

Instance Method Summary collapse

Instance Method Details

#to_tqueryObject



2
3
4
5
6
7
# File 'lib/texticle/nodes/query_node.rb', line 2

def to_tquery
  buffer = []
  elements.each do |elem|
    buffer << elem.to_tquery if elem.respond_to?(:to_tquery)
  end
end