public bool Equals(AstGenericPlaceholderType placeholder)
        {
            if (placeholder == null)
                return false;

            return this.target != null ? this.target == placeholder.target : this == placeholder;
        }
        public bool Equals(AstGenericPlaceholderType placeholder)
        {
            if (placeholder == null)
            {
                return(false);
            }

            return(this.target != null ? this.target == placeholder.target : this == placeholder);
        }
 public void MapDefinition(AstGenericPlaceholderType typeAst, GenericParameter type)
 {
     references.Add(typeAst, type);
 }
 protected virtual void AppendGenericPlaceholderType(StringBuilder builder, AstGenericPlaceholderType genericPlaceholderType)
 {
     builder.Append(genericPlaceholderType);
 }