Home | History | Annotate | Download | only in runtime
      1 org.antlr.runtime.MismatchedNotSetException = function(expecting, input) {
      2     org.antlr.runtime.MismatchedNotSetException.superclass.constructor.call(this, expecting, input);
      3 };
      4 
      5 org.antlr.lang.extend(
      6     org.antlr.runtime.MismatchedNotSetException,
      7     org.antlr.runtime.MismatchedSetException, {
      8     toString: function() {
      9         return "MismatchedNotSetException(" +
     10                 this.getUnexpectedType() + "!=" + this.expecting + ")";
     11     },
     12     name: "org.antlr.runtime.MismatchedNotSetException"
     13 });
     14