MismatchedNotSetException.js revision 324c4644fee44b9898524c09511bd33c3f12e2df
1org.antlr.runtime.MismatchedNotSetException = function(expecting, input) {
2    org.antlr.runtime.MismatchedNotSetException.superclass.constructor.call(this, expecting, input);
3};
4
5org.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