int callConv = sig.readByte();
// TODO decode HASTHIS from high byte of calling convention
// TODO decode EXPLICITTHIS from high byte of calling convention
// TODO handle VARARG calling convention (not CLS but may show up )
if((callConv & 0x1F) == Signature.GENERIC) {
int genParamCount = sig.decodeInt();
/* genParamCount is ignored because the method's type params will be obtained below
(see: file.GenericParam.getMVarIdxes(row) ) */
}
int paramCount = sig.decodeInt();
Type retType = sig.decodeRetType();