* @param type
* @param methodName
* @throws Exception
*/
private static void dump(Class type, String methodName) throws Exception {
ClassReader reader = new ClassReader(type.getName());
reader.accept(new Tracer(methodName, new ASMifier(), new PrintWriter(System.out)), 0);
}