Esempio n. 1
0
 /*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . .*/
 /// <summary>Equality comparison. 
 /// </summary>
 public virtual bool equals(lr_item_core other)
 {
     return core_equals(other);
 }
Esempio n. 2
0
        /*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . .*/

        /// <summary>Equality comparison.
        /// </summary>
        public virtual bool equals(lr_item_core other)
        {
            return(core_equals(other));
        }
Esempio n. 3
0
 /*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . .*/
 /// <summary>Equality comparison for the core only.  This is separate out because we 
 /// need separate access in a super class. 
 /// </summary>
 public virtual bool core_equals(lr_item_core other)
 {
     return other != null && _the_production.equals(other._the_production) && _dot_pos == other._dot_pos;
 }
Esempio n. 4
0
        /*. . . . . . . . . . . . . . . . . . . . . . . . . . . . . .*/

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