We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7163f37 commit ade7e12Copy full SHA for ade7e12
test/jdk/java/lang/invoke/indify/Indify.java
@@ -1355,6 +1355,7 @@ private void readConstant(DataInputStream in) throws IOException {
1355
case CONSTANT_InterfaceMethod:
1356
case CONSTANT_NameAndType:
1357
case CONSTANT_InvokeDynamic:
1358
+ case CONSTANT_Dynamic:
1359
// read an ordered pair
1360
arg = new Short[] { in.readShort(), in.readShort() };
1361
break;
@@ -1628,6 +1629,7 @@ public Instruction instructions() {
1628
1629
CONSTANT_NameAndType = 12,
1630
CONSTANT_MethodHandle = 15, // JSR 292
1631
CONSTANT_MethodType = 16, // JSR 292
1632
+ CONSTANT_Dynamic = 17,
1633
CONSTANT_InvokeDynamic = 18; // JSR 292
1634
private static final byte
1635
REF_getField = 1,
0 commit comments