Method: ANTLR3::Bug#initialize
- Defined in:
- lib/antlr3/error.rb
#initialize(message = nil, *args) ⇒ Bug
Returns a new instance of Bug.
663 664 665 666 667 |
# File 'lib/antlr3/error.rb', line 663 def initialize( = nil, *args ) = "something occurred that should not occur within unmodified, " << "ANTLR-generated source code: #{ }" super( , *args ) end |