Re: RFR: 8333377: Migrate Generic Signature parsing to ClassFile API [v4]

2025-01-03 Thread Chen Liang
On Thu, 5 Dec 2024 19:48:49 GMT, Chen Liang wrote: >> Core reflection's generic signature parsing uses an ancient library with >> outdated visitor pattern on a tree model and contains unnecessary >> boilerplates. This is a duplication of ClassFile API's signature model. We >> should just move

Re: RFR: 8333377: Migrate Generic Signature parsing to ClassFile API [v4]

2024-12-06 Thread Chen Liang
On Thu, 5 Dec 2024 19:48:49 GMT, Chen Liang wrote: >> Core reflection's generic signature parsing uses an ancient library with >> outdated visitor pattern on a tree model and contains unnecessary >> boilerplates. This is a duplication of ClassFile API's signature model. We >> should just move

Re: RFR: 8333377: Migrate Generic Signature parsing to ClassFile API [v4]

2024-12-05 Thread Chen Liang
> Core reflection's generic signature parsing uses an ancient library with > outdated visitor pattern on a tree model and contains unnecessary > boilerplates. This is a duplication of ClassFile API's signature model. We > should just move to ClassFile API, which is more throughoutly tested as we