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

Lines Matching refs:info

77         protected MismatchedSetException(SerializationInfo info, StreamingContext context)
78 : base(info, context)
80 if (info == null)
81 throw new ArgumentNullException("info");
83 this._expecting = (BitSet)info.GetValue("Expecting", typeof(BitSet));
94 public override void GetObjectData(SerializationInfo info, StreamingContext context)
96 if (info == null)
97 throw new ArgumentNullException("info");
99 base.GetObjectData(info, context);
100 info.AddValue("Expecting", _expecting);