Fix invokeinterface, add invokedynamic

This commit is contained in:
Adam
2014-12-01 12:00:46 -05:00
parent b51ed54426
commit 44f018727f
3 changed files with 10 additions and 65 deletions

View File

@@ -19,7 +19,8 @@ public class Instructions
int length = is.readInt();
for (int pc = 0; pc < length;)
int pc;
for (pc = 0; pc < length;)
{
byte opcode = is.readByte();
@@ -40,6 +41,8 @@ public class Instructions
throw new IOException(ex);
}
}
assert pc == length;
}
public Code getCode()