Example #1
0
 public bool ConformsToSimple(Classifier other)
 {
     return(TypeTable.ConformsTo(this, other, true));
 }
Example #2
0
        /* public override int GetHashCode() {
         *   return QualifiedName.GetHashCode();
         * }
         *
         * public override bool Equals(object obj) {
         *   if (obj is Classifier != true) {
         *       return false;
         *   }
         *   return QualifiedName == ((Classifier)obj).QualifiedName;
         * }*/

        public virtual bool ConformsTo(Classifier other)
        {
            return(TypeTable.ConformsTo(this, other));
        }