/*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . .*/
 /** Equality comparison. */
 public bool Equals(lr_item_core other)
 {
     return core_equals(other);
 }
Exemple #2
0
        /*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . .*/

        /** Equality comparison. */
        public bool Equals(lr_item_core other)
        {
            return(core_equals(other));
        }
 /*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . .*/
 /** Equality comparison for the core only.  This is separate out because we
    *  need separate access in a super class.
    */
 public bool core_equals(lr_item_core other)
 {
     return other != null &&
      _the_production.Equals(other._the_production) &&
      _dot_pos == other._dot_pos;
 }
Exemple #4
0
        /*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . .*/

        /** Equality comparison for the core only.  This is separate out because we
         *  need separate access in a super class.
         */
        public bool core_equals(lr_item_core other)
        {
            return(other != null &&
                   _the_production.Equals(other._the_production) &&
                   _dot_pos == other._dot_pos);
        }