Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8320575: generic type information lost on mandated parameters of record's compact constructors #17070

Closed
Closed
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
3894e79
8320575: generic type information lost on mandated parameters
vicente-romero-oracle Dec 8, 2023
0cc1bc5
javadoc adjustments
vicente-romero-oracle Dec 12, 2023
f2b65c1
javadoc
vicente-romero-oracle Dec 12, 2023
f4a4f5b
javadoc
vicente-romero-oracle Dec 12, 2023
6de5dff
removing comment
vicente-romero-oracle Dec 12, 2023
65a4b39
simplifying code
vicente-romero-oracle Dec 12, 2023
e48c798
fixing comment
vicente-romero-oracle Dec 12, 2023
89032d4
addressing review comments
vicente-romero-oracle Dec 14, 2023
03ecb88
adding a comment to the test
vicente-romero-oracle Dec 14, 2023
f6e837d
adding comment to jcod file
vicente-romero-oracle Dec 14, 2023
508f019
Merge branch 'master' into JDK-8320575
vicente-romero-oracle Apr 24, 2024
589f3ff
making the javadoc less general
vicente-romero-oracle Apr 24, 2024
4c3d4e1
Update test/jdk/java/lang/reflect/records/RecordReflectionTest.java
vicente-romero-oracle Apr 24, 2024
fa995af
adding more tests
vicente-romero-oracle Apr 26, 2024
cbc7956
special case the new code for records only
vicente-romero-oracle Apr 26, 2024
0abb428
additional tests
vicente-romero-oracle Apr 26, 2024
775599c
code refactoring
vicente-romero-oracle Apr 26, 2024
0237d72
Merge branch 'master' into JDK-8320575
vicente-romero-oracle Apr 29, 2024
234f78d
minor refactoring
vicente-romero-oracle Apr 29, 2024
64cf7e6
Merge branch 'master' into JDK-8320575
vicente-romero-oracle May 10, 2024
37010e1
addressing review comments
vicente-romero-oracle May 10, 2024
8ee8ffd
Merge branch 'master' into JDK-8320575
vicente-romero-oracle May 23, 2024
9ff2ba2
addressing review comments
vicente-romero-oracle May 23, 2024
db1d400
more review comments
vicente-romero-oracle May 23, 2024
d2748f2
fixing lines length
vicente-romero-oracle May 23, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions src/java.base/share/classes/java/lang/reflect/Executable.java
Original file line number Diff line number Diff line change
@@ -282,14 +282,13 @@ public Set<AccessFlag> accessFlags() {
* href="{@docRoot}/java.base/java/lang/reflect/package-summary.html#LanguageJvmModel">modeling
* artifact</a>, the number of returned parameters can differ
* depending on whether or not generic information is present. If
* generic information is present, only parameters explicitly
* present in the source and mandated parameters will be returned;
* if generic information is not present, synthetic parameters may be
* returned as well.
* generic information is present, only parameters implicitly or explicitly
* present in the source will be returned; if generic information
* is not present, synthetic parameters may be returned as well.
*
* <p>If a formal parameter type is a parameterized type,
* the {@code Type} object returned for it must accurately reflect
* the actual type arguments used, explicitly or implicitly, in the source code.
* the actual type arguments used, implicitly or explicitly, in the source code.
*
* <p>If a formal parameter type is a type variable or a parameterized
* type, it is created. Otherwise, it is resolved.