MCPcopy Create free account
hub / github.com/FabricMC/Matcher / dump

Method dump

src/main/java/matcher/type/Analysis.java:2385–2396  ·  view source on GitHub ↗
(MethodNode method)

Source from the content-addressed store, hash-verified

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();

Callers 2

analyzeMethodMethod · 0.95
checkInitializerMethod · 0.95

Calls 5

acceptMethod · 0.80
iteratorMethod · 0.80
hasNextMethod · 0.80
toStringMethod · 0.45
nextMethod · 0.45

Tested by

no test coverage detected