|
|
|
@ -29,7 +29,7 @@ namespace ICSharpCode.SharpDevelop.Tests.Utils
@@ -29,7 +29,7 @@ namespace ICSharpCode.SharpDevelop.Tests.Utils
|
|
|
|
|
return methods; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the property list directly. Only available in the
|
|
|
|
|
/// mock default return type class.
|
|
|
|
@ -40,6 +40,11 @@ namespace ICSharpCode.SharpDevelop.Tests.Utils
@@ -40,6 +40,11 @@ namespace ICSharpCode.SharpDevelop.Tests.Utils
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public bool Equals(IReturnType other) |
|
|
|
|
{ |
|
|
|
|
throw new NotImplementedException(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public string FullyQualifiedName { |
|
|
|
|
get { |
|
|
|
|
throw new NotImplementedException(); |
|
|
|
@ -76,24 +81,6 @@ namespace ICSharpCode.SharpDevelop.Tests.Utils
@@ -76,24 +81,6 @@ namespace ICSharpCode.SharpDevelop.Tests.Utils
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public bool IsArrayReturnType { |
|
|
|
|
get { |
|
|
|
|
throw new NotImplementedException(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public bool IsGenericReturnType { |
|
|
|
|
get { |
|
|
|
|
throw new NotImplementedException(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public bool IsConstructedReturnType { |
|
|
|
|
get { |
|
|
|
|
throw new NotImplementedException(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public IClass GetUnderlyingClass() |
|
|
|
|
{ |
|
|
|
|
throw new NotImplementedException(); |
|
|
|
@ -133,5 +120,33 @@ namespace ICSharpCode.SharpDevelop.Tests.Utils
@@ -133,5 +120,33 @@ namespace ICSharpCode.SharpDevelop.Tests.Utils
|
|
|
|
|
{ |
|
|
|
|
throw new NotImplementedException(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public bool IsArrayReturnType { |
|
|
|
|
get { |
|
|
|
|
throw new NotImplementedException(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public bool IsGenericReturnType { |
|
|
|
|
get { |
|
|
|
|
throw new NotImplementedException(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public bool IsConstructedReturnType { |
|
|
|
|
get { |
|
|
|
|
throw new NotImplementedException(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public bool IsDecoratingReturnType<T>() where T : DecoratingReturnType |
|
|
|
|
{ |
|
|
|
|
throw new NotImplementedException(); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public T CastToDecoratingReturnType<T>() where T : DecoratingReturnType |
|
|
|
|
{ |
|
|
|
|
throw new NotImplementedException(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|