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

8281463: [lworld] VALUE / PRIMITIVE modifiers should be supported by reflection #698

Closed
wants to merge 30 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
96578de
8281463: [lworld] VALUE / PRIMITIVE modifiers should be supported by …
RogerRiggs May 25, 2022
f28fb08
Add Class.isIdentity
RogerRiggs May 24, 2022
f83c35f
Restore AccessFlag SUPER
RogerRiggs May 27, 2022
482e3f4
Re-enable StaticFactoryTest
RogerRiggs May 31, 2022
33e24a0
Update handling of obsolete ACC_SUPER and remove ACC_PERMITSVALUE
RogerRiggs Jun 1, 2022
c7883a6
Add Class.is(AccessFlag) to test for a single flag.
RogerRiggs May 27, 2022
cd8d0de
Merge branch 'lworld' into 8287250-class-identity
RogerRiggs Jun 7, 2022
946eea0
Merge branch 'lworld' into 8281463-value-modifiers
RogerRiggs Jun 7, 2022
9af6875
Address review comments
RogerRiggs Jun 7, 2022
cab6cae
Revert changes and simplify
RogerRiggs Jun 7, 2022
349a939
Replace static int constants with AccessFlag method calls.
RogerRiggs Jun 8, 2022
f089c22
Merge branch 'lworld' into 8287250-class-identity
RogerRiggs Jun 16, 2022
d6dbe8f
Proxy class definition needs ACC_IDENTITY
RogerRiggs Jun 15, 2022
558d873
Merge branch 'lworld' into 8281463-value-modifiers
RogerRiggs Jun 17, 2022
605d386
Sync with jdk AccessFlag updates.
RogerRiggs Jun 24, 2022
8f37b14
Merge branch 'lworld' into 8281463-value-modifiers
RogerRiggs Jul 28, 2022
a220770
Merge branch 'lworld' into 8287250-class-identity
RogerRiggs Jul 28, 2022
b3a7ea7
Cleanup of modifier use
RogerRiggs Aug 2, 2022
dcd5d44
Merge branch '8287250-class-identity' into 8281463-value-modifiers
RogerRiggs Aug 2, 2022
ea58a93
Resync with mainline AccessFlag changes
RogerRiggs Aug 2, 2022
754c41c
Restore some tests and cleanup
RogerRiggs Aug 2, 2022
dd10bd4
Revert additions of ACC_PRIMITIVE to Modifier and AccessFlags.
RogerRiggs Aug 3, 2022
ecd28d1
Merge branch 'lworld' into 8281463-value-modifiers
RogerRiggs Aug 26, 2022
efdb333
Match up AccessFlag and Modifier
RogerRiggs Aug 26, 2022
9b2c0f0
Merge branch 'lworld' into 8281463-value-modifiers
RogerRiggs Sep 1, 2022
b7343b5
Merge branch 'lworld' into 8281463-value-modifiers
RogerRiggs Sep 2, 2022
28ef42f
Updated defneHiddenClass/BasicTest for EmptyHiddenAbstractClass
RogerRiggs Sep 2, 2022
e25b124
Merge branch 'lworld' into 8281463-value-modifiers
RogerRiggs Sep 6, 2022
d3c5b54
Update javadoc to resolve review comments.
RogerRiggs Sep 6, 2022
9a21fe0
Correct jvms references for identity and value modifiers
RogerRiggs Sep 6, 2022
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
8 changes: 4 additions & 4 deletions src/java.base/share/classes/java/lang/reflect/AccessFlag.java
Original file line number Diff line number Diff line change
@@ -190,8 +190,8 @@ public Set<Location> apply(ClassFileFormatVersion cffv) {
/**
* The access flag {@code ACC_IDENTITY}, corresponding to the
* source modifier {@link Modifier#IDENTITY identity}, with a mask
* value of {@code {@value "0x%04x" Modifier#IDENTITY}}.
* @jls 4.1-B. Class access and property modifiers
* value of <code>{@value "0x%04x" Modifier#IDENTITY}</code>.
* @jvms 4.1 -B. Class access and property modifiers
*/
IDENTITY(Modifier.IDENTITY, true, Location.SET_CLASS_INNER_CLASS, null),

@@ -247,8 +247,8 @@ public Set<Location> apply(ClassFileFormatVersion cffv) {
/**
* The access flag {@code ACC_VALUE}, corresponding to the
* source modifier {@link Modifier#VALUE value}, with a mask
* value of {@code {@value "0x%04x" Modifier#VALUE}}.
* @jls 4.1-B. Class access and property modifiers
* value of <code>{@value "0x%04x" Modifier#VALUE}</code>.
* @jvms 4.1 -B. Class access and property modifiers
*/
VALUE(Modifier.VALUE, true, Set.of(Location.CLASS, Location.INNER_CLASS), null),