1org.antlr.runtime.MismatchedSetException = function(expecting, input) { 2 org.antlr.runtime.MismatchedSetException.superclass.constructor.call( 3 this, input); 4 this.expecting = expecting; 5}; 6 7org.antlr.lang.extend( 8 org.antlr.runtime.MismatchedSetException, 9 org.antlr.runtime.RecognitionException, { 10 toString: function() { 11 return "MismatchedSetException(" + 12 this.getUnexpectedType() + "!=" + this.expecting + ")"; 13 }, 14 name: "org.antlr.runtime.MismatchedSetException" 15}); 16