@@ -255,12 +255,17 @@ public Set<AccessFlag> accessFlags() {
255
255
* represented by this object. Returns an array of length
256
256
* 0 if the underlying executable takes no parameters.
257
257
* Note that the constructors of some inner classes
258
- * may have an implicitly declared parameter in addition to
259
- * explicitly declared ones.
258
+ * may have an {@linkplain java.compiler/javax.lang.model.util.Elements.Origin#MANDATED
259
+ * implicitly declared} parameter in addition to explicitly
260
+ * declared ones.
261
+ * Also note that compact constructors of a record class may have
262
+ * {@linkplain java.compiler/javax.lang.model.util.Elements.Origin#MANDATED
263
+ * implicitly declared} parameters.
260
264
*
261
265
* @return the parameter types for the executable this object
262
266
* represents
263
267
*/
268
+ @ SuppressWarnings ("doclint:reference" ) // cross-module links
264
269
public abstract Class <?>[] getParameterTypes ();
265
270
266
271
/**
@@ -280,18 +285,32 @@ public Set<AccessFlag> accessFlags() {
280
285
* underlying executable takes no parameters. Note that the
281
286
* constructors of some inner classes may have an implicitly
282
287
* declared parameter in addition to explicitly declared ones.
283
- * Also note that as a <a
284
- * href="{@docRoot}/java.base/java/lang/reflect/package-summary.html#LanguageJvmModel">modeling
285
- * artifact</a>, the number of returned parameters can differ
288
+ * Compact constructors of a record class may also have
289
+ * {@linkplain java.compiler/javax.lang.model.util.Elements.Origin#MANDATED
290
+ * implicitly declared} parameters,
291
+ * but they are a special case and thus considered as if they had
292
+ * been explicitly declared in the source.
293
+ * Finally note that as a {@link java.lang.reflect##LanguageJvmModel
294
+ * modeling artifact}, the number of returned parameters can differ
286
295
* depending on whether or not generic information is present. If
287
- * generic information is present, only parameters explicitly
288
- * present in the source will be returned; if generic information
289
- * is not present, implicit and synthetic parameters may be
296
+ * generic information is present, parameters explicitly
297
+ * present in the source or parameters of compact constructors
298
+ * of a record class will be returned.
299
+ * Note that parameters of compact constructors of a record class are a special case,
300
+ * as they are not explicitly present in the source, and its type will be returned
301
+ * regardless of the parameters being
302
+ * {@linkplain java.compiler/javax.lang.model.util.Elements.Origin#MANDATED
303
+ * implicitly declared} or not.
304
+ * If generic information is not present, implicit and synthetic parameters may be
290
305
* returned as well.
291
306
*
292
307
* <p>If a formal parameter type is a parameterized type,
293
308
* the {@code Type} object returned for it must accurately reflect
294
- * the actual type arguments used in the source code.
309
+ * the actual type arguments used in the source code. This assertion also
310
+ * applies to the parameters of compact constructors of a record class,
311
+ * independently of them being
312
+ * {@linkplain java.compiler/javax.lang.model.util.Elements.Origin#MANDATED
313
+ * implicitly declared} or not.
295
314
*
296
315
* <p>If a formal parameter type is a type variable or a parameterized
297
316
* type, it is created. Otherwise, it is resolved.
@@ -309,6 +328,7 @@ public Set<AccessFlag> accessFlags() {
309
328
* the underlying executable's parameter types refer to a parameterized
310
329
* type that cannot be instantiated for any reason
311
330
*/
331
+ @ SuppressWarnings ("doclint:reference" ) // cross-module links
312
332
public Type [] getGenericParameterTypes () {
313
333
if (hasGenericInformation ())
314
334
return getGenericInfo ().getParameterTypes ();
@@ -335,22 +355,34 @@ Type[] getAllGenericParameterTypes() {
335
355
// If we have real parameter data, then we use the
336
356
// synthetic and mandate flags to our advantage.
337
357
if (realParamData ) {
338
- final Type [] out = new Type [nonGenericParamTypes .length ];
339
- final Parameter [] params = getParameters ();
340
- int fromidx = 0 ;
341
- for (int i = 0 ; i < out .length ; i ++) {
342
- final Parameter param = params [i ];
343
- if (param .isSynthetic () || param .isImplicit ()) {
344
- // If we hit a synthetic or mandated parameter,
345
- // use the non generic parameter info.
346
- out [i ] = nonGenericParamTypes [i ];
358
+ if (getDeclaringClass ().isRecord () && this instanceof Constructor ) {
359
+ /* we could be seeing a compact constructor of a record class
360
+ * its parameters are mandated but we should be able to retrieve
361
+ * its generic information if present
362
+ */
363
+ if (genericParamTypes .length == nonGenericParamTypes .length ) {
364
+ return genericParamTypes ;
347
365
} else {
348
- // Otherwise, use the generic parameter info.
349
- out [i ] = genericParamTypes [fromidx ];
350
- fromidx ++;
366
+ return nonGenericParamTypes .clone ();
351
367
}
368
+ } else {
369
+ final Type [] out = new Type [nonGenericParamTypes .length ];
370
+ final Parameter [] params = getParameters ();
371
+ int fromidx = 0 ;
372
+ for (int i = 0 ; i < out .length ; i ++) {
373
+ final Parameter param = params [i ];
374
+ if (param .isSynthetic () || param .isImplicit ()) {
375
+ // If we hit a synthetic or mandated parameter,
376
+ // use the non generic parameter info.
377
+ out [i ] = nonGenericParamTypes [i ];
378
+ } else {
379
+ // Otherwise, use the generic parameter info.
380
+ out [i ] = genericParamTypes [fromidx ];
381
+ fromidx ++;
382
+ }
383
+ }
384
+ return out ;
352
385
}
353
- return out ;
354
386
} else {
355
387
// Otherwise, use the non-generic parameter data.
356
388
// Without method parameter reflection data, we have
@@ -748,13 +780,18 @@ Type parameterize(Class<?> c) {
748
780
* Returns an array of length 0 if the method/constructor declares no
749
781
* parameters.
750
782
* Note that the constructors of some inner classes
751
- * may have an implicitly declared parameter in addition to
752
- * explicitly declared ones.
783
+ * may have an
784
+ * {@linkplain java.compiler/javax.lang.model.util.Elements.Origin#MANDATED
785
+ * implicitly declared} parameter in addition to explicitly declared ones.
786
+ * Also note that compact constructors of a record class may have
787
+ * {@linkplain java.compiler/javax.lang.model.util.Elements.Origin#MANDATED
788
+ * implicitly declared} parameters.
753
789
*
754
790
* @return an array of objects representing the types of the
755
791
* formal parameters of the method or constructor represented by this
756
792
* {@code Executable}
757
793
*/
794
+ @ SuppressWarnings ("doclint:reference" ) // cross-module links
758
795
public AnnotatedType [] getAnnotatedParameterTypes () {
759
796
return TypeAnnotationParser .buildAnnotatedTypes (getTypeAnnotationBytes0 (),
760
797
SharedSecrets .getJavaLangAccess ().
1 commit comments
openjdk-notifier[bot] commentedon May 24, 2024
Review
Issues