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

Lines Matching defs:Expecting

63         public MismatchedTokenException(int expecting, IIntStream input)
64 : this(expecting, input, null)
68 public MismatchedTokenException(int expecting, IIntStream input, IList<string> tokenNames)
71 this._expecting = expecting;
77 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames)
80 this._expecting = expecting;
86 public MismatchedTokenException(string message, int expecting, IIntStream input, IList<string> tokenNames, Exception innerException)
89 this._expecting = expecting;
101 this._expecting = info.GetInt32("Expecting");
105 public int Expecting
127 info.AddValue("Expecting", _expecting);
135 string expected = ( TokenNames != null && Expecting >= 0 && Expecting < TokenNames.Count ) ? TokenNames[Expecting] : Expecting.ToString();