public void debug(Class owner, String methodName, String description) {
if (!config.compression) {
buffer.append("// ");
buffer.append(owner.getName()).append("#").append(methodName).append("(");
Type type = Type.getMethodType(description);
Type[] args = type.getArgumentTypes();
for (int i = 0; i < args.length; i++) {
buffer.append(args[i].getClassName());
if (i < args.length - 1) {