Lines Matching refs:ANTLR3
35 =begin rdoc ANTLR3
44 Not all components of the ANTLR3 library are necessary within ANTLR generated
47 when requiring 'antlr3', only the essential core components are loaded
51 The following list gives a brief introduction to each component of the ANTLR3
54 antlr3/recognizers.rb::
57 antlr3/dfa.rb::
60 antlr3/streams.rb::
63 antlr3/token.rb::
67 antlr3/error.rb::
71 antlr3/constants.rb::
74 antlr3/tree.rb::
76 not loaded by default when 'antlr3' is required, but it is autloaded on demand
79 antlr3/debug.rb::
84 antlr3/main.rb::
89 antlr3/tree-wizard.rb::
92 antlr3/dot.rb::
100 module ANTLR3
130 # under normal usage conditions and thus an ANTLR3::Bug error will be
169 autoload :AST, 'antlr3/tree'
181 autoload klass, 'antlr3/tree'
185 autoload :TokenRewriteStream, 'antlr3/streams/rewrite'
186 autoload :FilterMode, 'antlr3/modes/filter'
187 autoload :ASTBuilder, 'antlr3/modes/ast-builder'
188 autoload :Main, 'antlr3/main'
189 autoload :Debug, 'antlr3/debug'
190 autoload :Profile, 'antlr3/profile'
191 autoload :DOT, 'antlr3/dot'
192 autoload :InteractiveStringStream, 'antlr3/streams/interactive'
194 autoload :Template, 'antlr3/template'
198 end # module ANTLR3
202 require 'antlr3/util'
203 require 'antlr3/version'
206 require 'antlr3/constants'
207 require 'antlr3/error'
208 require 'antlr3/token'
209 require 'antlr3/recognizers'
210 require 'antlr3/dfa'
211 require 'antlr3/streams'