Home | History | Annotate | Download | only in runtime
      1 /** The recognizer did not match anything for a ()+ loop.
      2  *
      3  *  @class
      4  *  @param {Number} decisionNumber
      5  *  @param {org.antlr.runtime.CommonTokenStream|org.antlr.runtime.tree.TreeNodeStream|org.antlr.runtime.ANTLRStringStream} input input stream that has an exception.
      6  *  @extends org.antlr.runtime.RecognitionException
      7  */
      8 org.antlr.runtime.EarlyExitException = function(decisionNumber, input) {
      9     org.antlr.runtime.EarlyExitException.superclass.constructor.call(
     10             this, input);
     11     this.decisionNumber = decisionNumber;
     12 };
     13 
     14 org.antlr.lang.extend(
     15     org.antlr.runtime.EarlyExitException,
     16     org.antlr.runtime.RecognitionException,
     17 /** @lends org.antlr.runtime.EarlyExitException.prototype */
     18 {
     19     /** Name of this class.
     20      *  @type String
     21      */
     22     name: "org.antlr.runtime.EarlyExitException"
     23 });
     24