MemberSignatureParts msp = MemberSignatureParts.fromLogCompilationSignature("org.adoptopenjdk.jitwatch.demo.MakeHotSpotLog " + methodName + " ()V");
IMetaMember testMember = metaClass.getMemberFromSignature(msp);
CompileNode root = buildCompileNodeForXML(lines, testMember, testModel);
// private void testCallChain3()
// {
// long count = 0;
// int iterations = 100_000;
// for (int i = 0; i < iterations; i++)
// {
// if (test(i, iterations))
// {
// count = chainC1(count);
// }
// else
// {
// count = chainC2(count);
// }
// }
// System.out.println("testCallChain2: " + count);
// }
// root
// -> test()
// -> chainC1() -> chainC2()
// -> chainC3()
// -> chainC2()
// -> java.lang.AbstractStringBuilder() -> java.lang.Object()
// -> append()
// -> append()
// -> toString()
// -> println
List<CompileNode> rootChildren = root.getChildren();
assertEquals(8, rootChildren.size());
int pos = 0;