class ANTLR3::AST::RewriteRuleTokenStream

Special type of stream that is used internally by tree-building and tree- rewriting parsers.

Public Instance Methods

dup( el ) click to toggle source
# File lib/antlr3/tree.rb, line 1338
def dup( el )
  raise TypeError, "dup can't be called for a token stream"
end
next_node() click to toggle source
# File lib/antlr3/tree.rb, line 1331
def next_node
  return @adaptor.create_with_payload( __next__ )
end