Re: RFR: JDK-8027711: Unify wildcarding syntax for CompileCommand and CompileOnly [v4]

2023-06-09 Thread Christian Hagedorn
On Fri, 9 Jun 2023 13:24:20 GMT, Tobias Holenstein wrote: >> At the moment `CompileCommand` and `CompileOnly` use different syntax for >> matching methods. >> >> ### Old CompileOnly format >> - matching a **method name** with **class name** and **package name**: >> `-XX:CompileOnly=package/pa

Re: RFR: JDK-8027711: Unify wildcarding syntax for CompileCommand and CompileOnly [v4]

2023-06-09 Thread Tobias Holenstein
> At the moment `CompileCommand` and `CompileOnly` use different syntax for > matching methods. > > ### Old CompileOnly format > - matching a **method name** with **class name** and **package name**: > `-XX:CompileOnly=package/path/Class.method` > `-XX:CompileOnly=package/path/Class::method` > `