Home | History | Annotate | Download | only in Antlr.Runtime.Tree

Lines Matching refs:elementDescription

52         public RewriteCardinalityException(string elementDescription)
53 : this(elementDescription, elementDescription) {
54 this._elementDescription = elementDescription;
57 public RewriteCardinalityException(string elementDescription, Exception innerException)
58 : this(elementDescription, elementDescription, innerException) {
61 public RewriteCardinalityException(string message, string elementDescription)
63 _elementDescription = elementDescription;
66 public RewriteCardinalityException(string message, string elementDescription, Exception innerException)
68 _elementDescription = elementDescription;
76 _elementDescription = info.GetString("ElementDescription");
84 info.AddValue("ElementDescription", _elementDescription);