495051525354555657585960
initInnerClasses(classes); } private static void initClassPath(List<ClassNode> classes) throws IOException, DecodeException { if (!ArgType.isClspSet()) { ClspGraph clsp = new ClspGraph(); clsp.load(); clsp.addApp(classes); ArgType.setClsp(clsp); } }
303132333435363738
public class TypeMergeTest { @Before public void initClsp() throws IOException, DecodeException { ClspGraph clsp = new ClspGraph(); clsp.load(); ArgType.setClsp(clsp); }
212223242526272829
ClspGraph clsp; @Before public void initClsp() throws IOException, DecodeException { clsp = new ClspGraph(); clsp.load(); ArgType.setClsp(clsp); }