IDEA-162579 "Unrecognized invocation of <init>" when decompiling kotlin bytecode

This commit is contained in:
Egor.Ushakov
2016-10-14 14:40:00 +03:00
parent 77d6c2906f
commit ee83b25d1d
5 changed files with 90 additions and 1 deletions

View File

@@ -306,7 +306,12 @@ public class InvocationExprent extends Exprent {
buf.append("this(");
}
else {
throw new RuntimeException("Unrecognized invocation of " + CodeConstants.INIT_NAME);
if (instance != null) {
buf.append(instance.toJava(indent, tracer)).append(".<init>(");
}
else {
throw new RuntimeException("Unrecognized invocation of " + CodeConstants.INIT_NAME);
}
}
}