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

Lines Matching defs:Expecting

59         public MismatchedSetException( BitSet expecting, IIntStream input )
62 this._expecting = expecting;
65 public MismatchedSetException(string message, BitSet expecting, IIntStream input)
68 this._expecting = expecting;
71 public MismatchedSetException(string message, BitSet expecting, IIntStream input, Exception innerException)
74 this._expecting = expecting;
83 this._expecting = (BitSet)info.GetValue("Expecting", typeof(BitSet));
86 public BitSet Expecting
100 info.AddValue("Expecting", _expecting);
105 return "MismatchedSetException(" + UnexpectedType + "!=" + Expecting + ")";