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

Lines Matching refs:string

48         public UnwantedTokenException(string message)
53 public UnwantedTokenException(string message, Exception innerException)
63 public UnwantedTokenException(int expecting, IIntStream input, IList<string> tokenNames)
68 public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames)
73 public UnwantedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException)
91 public override string ToString()
94 //string unexpected = ( tokenNames != null && unexpectedType >= 0 && unexpectedType < tokenNames.Length ) ? tokenNames[unexpectedType] : unexpectedType.ToString();
95 string expected = (TokenNames != null && Expecting >= 0 && Expecting < TokenNames.Count) ? TokenNames[Expecting] : Expecting.ToString();
97 string exp = ", expected " + expected;