module ANTLR3::Error

Public Instance Methods

EarlyExit( decision, input = @input ) click to toggle source
# File lib/antlr3/error.rb, line 628
def EarlyExit( decision, input = @input )
  EarlyExit.new( decision, input )
end
FailedPredicate( rule, predicate, input = @input ) click to toggle source
# File lib/antlr3/error.rb, line 632
def FailedPredicate( rule, predicate, input = @input )
  FailedPredicate.new( input, rule, predicate )
end
MismatchedNotSet( expecting, input = @input ) click to toggle source
# File lib/antlr3/error.rb, line 620
def MismatchedNotSet( expecting, input = @input )
  MismatchedNotSet.new( expecting, input )
end
MismatchedRange( min, max, input = @input ) click to toggle source
# File lib/antlr3/error.rb, line 612
def MismatchedRange( min, max, input = @input )
  MismatchedRange.new( min, max, input )
end
MismatchedSet( expecting, input = @input ) click to toggle source
# File lib/antlr3/error.rb, line 616
def MismatchedSet( expecting, input = @input )
  MismatchedSet.new( expecting, input )
end
MismatchedToken( expecting, input = @input ) click to toggle source
# File lib/antlr3/error.rb, line 600
def MismatchedToken( expecting, input = @input )
  MismatchedToken.new( expecting, input )
end
MismatchedTreeNode( expecting, input = @input ) click to toggle source
# File lib/antlr3/error.rb, line 636
def MismatchedTreeNode( expecting, input = @input )
  MismatchedTreeNode.new( expecting, input )
end
MissingToken( expecting, inserted, input = @input ) click to toggle source
# File lib/antlr3/error.rb, line 608
def MissingToken( expecting, inserted, input = @input )
  MissingToken.new( expecting, input, inserted )
end
NoViableAlternative( description, decision, state, input = @input ) click to toggle source
# File lib/antlr3/error.rb, line 624
def NoViableAlternative( description, decision, state, input = @input )
  NoViableAlternative.new( description, decision, state, input )
end
RewriteCardinalityError( element_description ) click to toggle source
# File lib/antlr3/error.rb, line 640
def RewriteCardinalityError( element_description )
  RewriteCardinalityError.new( element_description )
end
RewriteEarlyExit( element_description = nil ) click to toggle source
# File lib/antlr3/error.rb, line 644
def RewriteEarlyExit( element_description = nil )
  RewriteEarlyExit.new( element_description )
end
RewriteEmptyStream( element_description ) click to toggle source
# File lib/antlr3/error.rb, line 648
def RewriteEmptyStream( element_description )
  RewriteEmptyStream.new( element_description )
end
UnwantedToken( expecting, input = @input ) click to toggle source
# File lib/antlr3/error.rb, line 604
def UnwantedToken( expecting, input = @input )
  UnwantedToken.new( expecting, input )
end