class ANTLR3::Error::MismatchedNotSet

error

MismatchedNotSet

used by

all recognizers

occurs when

A recognizer expected to match symbol that is not in some set of symbols but failed.

Public Instance Methods

message() click to toggle source
# File lib/antlr3/error.rb, line 372
def message
  '%s: %p != %p' %
    [ self.class, unexpected_type, @expecting ]
end