Executor work

This commit is contained in:
Adam
2015-01-26 00:40:54 -05:00
parent a998491133
commit 55dca4fa9b
148 changed files with 512 additions and 194 deletions

View File

@@ -37,6 +37,14 @@ public class Methods
return m;
return null;
}
public Method findMethod(String name)
{
for (Method m : methods)
if (m.getName().equals(name))
return m;
return null;
}
public void buildInstructionGraph()
{