Exemplo n.º 1
0
        public bool Equals(AstGenericPlaceholderType placeholder)
        {
            if (placeholder == null)
                return false;

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

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