}
return methods;
}
private WeaselMethod readMethod(DataInputStream dataInputStream) throws IOException {
WeaselMethod method = new WeaselMethod();
method.name = readString(dataInputStream);
method.returnType = readClass(dataInputStream);
method.params = readTypeParams(dataInputStream);
method.throwClasses = readSuperClasses(dataInputStream);
method.byteCodes = readByteCodes(dataInputStream);