Add local var table instruction type and make relevant instructions

implement it
This commit is contained in:
Adam
2015-05-04 15:36:38 -04:00
parent 267efc7940
commit e70466fc0a
55 changed files with 726 additions and 55 deletions

View File

@@ -21,7 +21,7 @@ public class Method
private int nameIndex;
private int descriptorIndex;
private Attributes attributes;
public List<Node> callsTo = new ArrayList<>(),
private List<Node> callsTo = new ArrayList<>(),
callsFrom = new ArrayList<>();
Method(Methods methods) throws IOException