public virtual IType VisitPointerType(PointerType type)
		{
			return type.VisitChildren(this);
		}
示例#2
0
        public override bool Equals(IType other)
        {
            PointerType a = other as PointerType;

            return(a != null && elementType.Equals(a.elementType));
        }
示例#3
0
        bool ISupportsInterning.EqualsForInterning(ISupportsInterning other)
        {
            PointerType o = other as PointerType;

            return(o != null && this.elementType == o.elementType);
        }
示例#4
0
 public virtual IType VisitPointerType(PointerType type)
 {
     return(type.VisitChildren(this));
 }