Exemple #1
0
 public bool Equals(PkgdefIssue rhs)
 {
     return(rhs != null &&
            this.startIndex == rhs.startIndex &&
            this.length == rhs.length &&
            this.message == rhs.message);
 }
Exemple #2
0
 internal static void IgnoreIssue(PkgdefIssue issue)
 {
 }
Exemple #3
0
 internal static void ThrowParseException(PkgdefIssue issue)
 {
     throw new ParseException(issue.GetMessage());
 }