File tree Expand file tree Collapse file tree 1 file changed +1
-2
lines changed
substratevm/src/com.oracle.graal.pointsto/src/com/oracle/graal/pointsto/reports Expand file tree Collapse file tree 1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -70,6 +70,7 @@ public final class CallTreePrinter {
70
70
71
71
public static final Pattern CAMEL_CASE_PATTERN = Pattern .compile (
72
72
"\\ b[a-zA-Z]|[A-Z]|\\ ." );
73
+ public static final String METHOD_FORMAT = "%H.%n(%P):%R" ;
73
74
74
75
public static void print (BigBang bb , String reportsPath , String reportName ) {
75
76
CallTreePrinter printer = new CallTreePrinter (bb );
@@ -259,8 +260,6 @@ private static SourceReference[] sourceReference(BytecodePosition position) {
259
260
return sourceReference .toArray (new SourceReference [sourceReference .size ()]);
260
261
}
261
262
262
- private static final String METHOD_FORMAT = "%H.%n(%P):%R" ;
263
-
264
263
private void printMethods (PrintWriter out ) {
265
264
out .println ("VM Entry Points" );
266
265
Iterator <MethodNode > iterator = methodToNode .values ().stream ().filter (n -> n .isEntryPoint ).iterator ();
You can’t perform that action at this time.
0 commit comments