This treats the parameter references in compact constructors as fields since the only place in the eclipse dom they are defined are in the record declaration where they generate a different key
Changes the record component range calculation so that they don't use for loops and the range contains int component instead of >(int component if the record has at least 1 type parameter, (int component if the record doesn't have any type parameters, or with the original bug the entire length of the record twice plusthe length of the class before the record (and with atleast 1 type parameter with an offset of everything before the last type parameter is declared) while also making it not generate an empty method if a record contains no record components (which javac does allow)
This treats the parameter references in compact constructors as fields since the only place in the eclipse dom they are defined are in the record declaration where they generate a different key
Changes the record component range calculation so that they don't use for loops and the range contains
int component
instead of>(int component
if the record has at least 1 type parameter,(int component
if the record doesn't have any type parameters, or with the original bug the entire length of the record twice plusthe length of the class before the record (and with atleast 1 type parameter with an offset of everything before the last type parameter is declared) while also making it not generate an empty method if a record contains no record components (which javac does allow)