/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . .*/
 /** Equality test. */
 public new bool Equals(parse_action other)
 {
     return other != null && other.kind() == NONASSOC;
 }
Exemplo n.º 2
0
        /*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . .*/

        /** Equality test. */
        new  public bool Equals(parse_action other)
        {
            return(other != null && other.kind() == NONASSOC);
        }
Exemplo n.º 3
0
        /*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . .*/

        /** Equality test. */
        public bool Equals(parse_action other)
        {
            /* we match all error actions */
            return(other != null && other.kind() == kind());
        }
Exemplo n.º 4
0
		/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . .*/

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