/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . .*/ /** Equality test. */ public new bool Equals(parse_action other) { return other != null && other.kind() == NONASSOC; }
/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . .*/ /** Equality test. */ new public bool Equals(parse_action other) { return(other != null && other.kind() == NONASSOC); }
/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . .*/ /** Equality test. */ public bool Equals(parse_action other) { /* we match all error actions */ return(other != null && other.kind() == kind()); }
/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . .*/ /** Equality test. */ public bool Equals(parse_action other) { /* we match all error actions */ return other != null && other.kind() == kind(); }