Re: RFR: 8298590: Refactor LambdaForm constructors

2022-12-14 Thread Claes Redestad
On Fri, 9 Dec 2022 18:02:53 GMT, Jorn Vernee wrote: > Refactor LambdaForm constructors into static factories. > > In the new code, there's only 1 constructor, which simply initializes all > fields. Multiple factory methods are built on top of this, which add various > argument validation/pre-p

RFR: 8298590: Refactor LambdaForm constructors

2022-12-12 Thread Jorn Vernee
Refactor LambdaForm constructors into static factories. In the new code, there's only 1 constructor, which simply initializes all fields. Multiple factory methods are built on top of this, which add various argument validation/pre-processing and post processing of the constructed lambda forms.