public override bool Equals(IType other) { PointerType a = other as PointerType; return(a != null && elementType.Equals(a.elementType)); }
public virtual IType VisitPointerType(PointerType type) { return(type.VisitChildren(this)); }