IDEA-151950 Decompiler doesn't work for classes from JDK 9
authorEgor.Ushakov <egor.ushakov@jetbrains.com>
Mon, 29 Feb 2016 13:21:54 +0000 (16:21 +0300)
committerEgor.Ushakov <egor.ushakov@jetbrains.com>
Mon, 29 Feb 2016 13:22:42 +0000 (16:22 +0300)
plugins/java-decompiler/engine/src/org/jetbrains/java/decompiler/modules/decompiler/ExprProcessor.java

index 9296bb3f6007bda9647e2f0d919cdfd311567222..cbc66c78c63af685e8694049ce8068d04883f90c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright 2000-2015 JetBrains s.r.o.
+ * Copyright 2000-2016 JetBrains s.r.o.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -573,9 +573,12 @@ public class ExprProcessor implements CodeConstants {
 
             if (instr.opcode == opc_invokedynamic && bootstrap != null) {
               List<PooledConstant> bootstrap_arguments = bootstrap.getMethodArguments(invoke_constant.index1);
-              LinkConstant content_method_handle = (LinkConstant)bootstrap_arguments.get(1);
-
-              dynamic_invokation_type = content_method_handle.index1;
+              if (bootstrap_arguments.size() > 1) { // INVOKEDYNAMIC is used not only for lambdas
+                PooledConstant link = bootstrap_arguments.get(1);
+                if (link instanceof LinkConstant) {
+                  dynamic_invokation_type = ((LinkConstant)link).index1;
+                }
+              }
             }
 
             InvocationExprent exprinv = new InvocationExprent(instr.opcode, invoke_constant, stack, dynamic_invokation_type, bytecode_offsets);