Empty sig attribute on call should be interpreted as zero length argument list.

This commit is contained in:
jfrijters 2010-10-22 06:06:56 +00:00
Родитель f0919deab5
Коммит 4395037838
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -206,6 +206,10 @@ namespace IKVM.Internal.MapXml
{
argTypes = context.ClassLoader.ArgTypeListFromSig(Sig);
}
else if(Sig == "")
{
argTypes = Type.EmptyTypes;
}
else
{
string[] types = Sig.Split(';');