Home | History | Annotate | Download | only in Antlr3.Runtime

Lines Matching refs:Expecting

58         public UnwantedTokenException(int expecting, IIntStream input)
59 : base(expecting, input)
63 public UnwantedTokenException(int expecting, IIntStream input, IList<string> tokenNames)
64 : base(expecting, input, tokenNames)
68 public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames)
69 : base(message, expecting, input, tokenNames)
73 public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException)
74 : base(message, expecting, input, tokenNames, innerException)
95 string expected = (TokenNames != null && Expecting >= 0 && Expecting < TokenNames.Count) ? TokenNames[Expecting] : Expecting.ToString();
98 if (Expecting == TokenTypes.Invalid)