!7 p { CompilationUnit cu = javaParseCompilationUnit(getServerTranspiled2(#1011219)); printJavaParserTree(cu); } svoid printJavaParserTree(Node node) { if (node == null) ret with print("null"); print(shortClassName(node)); threadIndent(); try { for (Node child : node.getChildNodes()) printJavaParserTree(child); } finally { threadUnindent(); } }