(MethodNode method)
| 2383 | } |
| 2384 | |
| 2385 | private static void dump(MethodNode method) { |
| 2386 | Textifier textifier = new Textifier(); |
| 2387 | method.accept(new TraceMethodVisitor(textifier)); |
| 2388 | |
| 2389 | StringWriter writer = new StringWriter(); |
| 2390 | |
| 2391 | try (PrintWriter pw = new PrintWriter(writer)) { |
| 2392 | textifier.print(pw); |
| 2393 | } |
| 2394 | |
| 2395 | Matcher.LOGGER.debug(writer.toString()); |
| 2396 | } |
| 2397 | |
| 2398 | private static void dump(Iterable<AbstractInsnNode> il) { |
| 2399 | Textifier textifier = new Textifier(); |