Browse Source
git-svn-id: svn://svn.sharpdevelop.net/sharpdevelop/branches/3.0@3630 1ccf3a8d-04fe-1044-b7c0-cef0b8235c61shortcuts
12 changed files with 112 additions and 0 deletions
@ -0,0 +1,22 @@ |
|||||||
|
// <file>
|
||||||
|
// <copyright see="prj:///doc/copyright.txt"/>
|
||||||
|
// <license see="prj:///doc/license.txt"/>
|
||||||
|
// <author name="Daniel Grunwald"/>
|
||||||
|
// <version>$Revision$</version>
|
||||||
|
// </file>
|
||||||
|
|
||||||
|
using System; |
||||||
|
|
||||||
|
namespace ICSharpCode.SharpDevelop.Dom |
||||||
|
{ |
||||||
|
sealed class UnknownReturnType : ProxyReturnType |
||||||
|
{ |
||||||
|
public static readonly UnknownReturnType Instance = new UnknownReturnType(); |
||||||
|
|
||||||
|
public override IReturnType BaseType { |
||||||
|
get { |
||||||
|
return null; |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue