I will need to actually perform method invocations during execution to

be able to pass/get the correct underlying types of variables for the
virtual method lookup.
This commit is contained in:
Adam
2015-06-26 13:19:51 -04:00
parent 0543950013
commit dfcc41b41c
7 changed files with 30 additions and 34 deletions

View File

@@ -185,11 +185,6 @@ public class ClassFile
methods.buildInstructionGraph();
}
public void buildCallGraph()
{
methods.buildCallGraph();
}
public boolean instanceOf(ClassFile other)
{
return this == other || interfaces.instanceOf(other) || (getParent() != null && getParent().instanceOf(other));