Home | History | Annotate | Download | only in antlr3

Lines Matching refs:antlr3

35 module ANTLR3
38 =begin rdoc ANTLR3::Stream
40 = ANTLR3 Streams
43 recognizers, and then discusses the specific <tt>ANTLR3::Stream</tt> module.
56 Stream hierarchy is implemented in antlr3/stream.rb, which is loaded by default
57 when 'antlr3' is required.
84 defined in antlr3/stream.rb, but antlr3/tree.rb
143 <tt>ANTLR3::Stream</tt> is an abstract-ish base mixin for all IO-like stream
161 it is not strictly necessary that custom stream objects include ANTLR3::Stream,
167 include ANTLR3::Constants
224 =begin rdoc ANTLR3::CharacterStream
270 =begin rdoc ANTLR3::TokenStream
340 =begin rdoc ANTLR3::StringStream
665 =begin rdoc ANTLR3::FileStream
721 =begin rdoc ANTLR3::CommonTokenStream
734 source_input = ANTLR3::StringStream.new("35 * 4 - 1")
736 tokens = ANTLR3::CommonTokenStream.new(lexer)
750 ANTLR3::CommonTokenStream.new(lexer, :channel => ANTLR3::HIDDEN)
762 # ANTLR3::TokenSource.
776 # ANTLR3::CommonTokenStream.new(lexer, :channel => :comment) do |token|