|
|
|
@ -65,7 +65,7 @@ namespace ICSharpCode.NRefactory.TypeSystem.Implementation |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
readonly static IList<IType> emptyTypeArguments = new IType[0]; |
|
|
|
readonly static IList<IType> emptyTypeArguments = new IType[0]; |
|
|
|
IList<IType> IType.TypeArguments { |
|
|
|
public virtual IList<IType> TypeArguments { |
|
|
|
get { return emptyTypeArguments; } |
|
|
|
get { return emptyTypeArguments; } |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@ -73,6 +73,10 @@ namespace ICSharpCode.NRefactory.TypeSystem.Implementation |
|
|
|
get { return null; } |
|
|
|
get { return null; } |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public virtual bool IsParameterized { |
|
|
|
|
|
|
|
get { return false; } |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public virtual ITypeDefinition GetDefinition() |
|
|
|
public virtual ITypeDefinition GetDefinition() |
|
|
|
{ |
|
|
|
{ |
|
|
|
return null; |
|
|
|
return null; |
|
|
|
|