OtpErlangList analysisResults = (OtpErlangList) response.elementAt(1);
Assert.assertEquals(1, analysisResults.arity());
OtpErlangTuple fileDetails = (OtpErlangTuple) analysisResults.elementAt(0);
OtpErlangList typeInformation = (OtpErlangList) fileDetails.elementAt(3);
for (int i = 0; i < typeInformation.arity(); ++i) {
OtpErlangTuple functionDescr = (OtpErlangTuple) typeInformation.elementAt(i);
if (functionDescr.arity() > 3)
{
FuncSignature s = new FuncSignature(config,functionDescr, null);
sigTypes.put(s.getQualifiedName(), functionDescr);
//sigs.put(s.getQualifiedName(), s);