-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
8336754: Remodel TypeAnnotation to "has" instead of "be" an Annotation #20247
Conversation
👋 Welcome back liach! A progress list of the required criteria for merging this PR into |
@liach This change now passes all automated pre-integration checks. ℹ️ This project also has non-automated pre-integration requirements. Please see the file CONTRIBUTING.md for details. After integration, the commit message for the final commit will be:
You can use pull request commands such as /summary, /contributor and /issue to adjust it as needed. At the time when this comment was updated there had been no new commits pushed to the ➡️ To integrate this PR with the above commit message to the |
Webrevs
|
return lr.labelToBci(label); | ||
} | ||
|
||
public static void writeTypeAnnotation(BufWriterImpl buf, TypeAnnotation ta) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there any reason to move writeTypeAnnotation from UnboundAttribute?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is for consistency with reading annotations: they are now defined in the same file.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good to me.
Mailing list message from Alex Buckley on compiler-dev: Logically, an annotation is either a declaration annotation or a type In the Class File API, `Annotation` is specified as "Models an (It's not what the Core Reflection API does -- However, I think it's wrong in Class File for `TypeAnnotation` to I don't know much the Class File API supports writing a `TypeAnnotation` Alex On 7/18/2024 7:01 PM, Chen Liang wrote: |
The parent pull request that this pull request depends on has now been integrated and the target branch of this pull request has been updated. This means that changes from the dependent pull request can start to show up as belonging to this pull request, which may be confusing for reviewers. To remedy this situation, simply merge the latest changes from the new target branch into this pull request by running commands similar to these in the local repository for your personal fork: git checkout fix/typeanno-model
git fetch https://git.openjdk.org/jdk.git master
git merge FETCH_HEAD
# if there are conflicts, follow the instructions given by git merge
git commit -m "Merge master"
git push |
@liach this pull request can not be integrated into git checkout fix/typeanno-model
git fetch https://git.openjdk.org/jdk.git master
git merge FETCH_HEAD
# resolve conflicts and follow the instructions given by git merge
git commit -m "Merge master"
git push |
|
877b938
to
6e31c48
Compare
@liach Please do not rebase or force-push to an active PR as it invalidates existing review comments. Note for future reference, the bots always squash all changes into a single commit automatically as part of the integration. See OpenJDK Developers’ Guide for more information. |
Unfortunately had to force push: the old commit histories now cause conflicts, so I had squashed them into one and applied onto the latest master. |
/contributor add abuckley |
@liach |
I have implemented the suggestions (compiled to -> represented by, key-value -> element value) and tried to simplify the wording. Please review the current version:
|
Mailing list message from Alex Buckley on compiler-dev: On 8/1/2024 1:02 PM, Chen Liang wrote:
Very good and precise usage of "annotation" versus "annotation
I take issue with "compiled to ...". The annotation is *compiled* to a
Multiple annotations ... *are represented* [not "is compiled"] by a Alex |
Mailing list message from Chen Liang on core-libs-dev: One specification question for Alex: we call an annotation interface's element "element". What about the element-value pair that binds a value to an interface element in an annotation? Can we call this element-value pair an "element", or is there any other more proper name that is still concise? For context:
________________________________ On Fri, 2 Aug 2024 00:04:48 GMT, Chen Liang <liach at openjdk.org> wrote:
Marked as reviewed by asotona (Reviewer). ------------- PR Review: https://git.openjdk.org/jdk/pull/20247#pullrequestreview-2215642863 |
Mailing list message from Alex Buckley on core-libs-dev: In the annotation `@Foo(a=1)`, the left hand side `a` is an _element_ Syntactically the `a` is an identifier but that's almost never relevant Alex On 8/2/2024 8:45 AM, Chen Liang wrote: |
Mailing list message from Chen Liang on core-libs-dev: Thanks for the confirmation. I will submit this finalized specification for CSR review. In the annotation `@Foo(a=1)`, the left hand side `a` is an _element_ Syntactically the `a` is an identifier but that's almost never relevant Alex On 8/2/2024 8:45 AM, Chen Liang wrote: |
Swallowed the 2 conflicts from #20513: The tags are already correct in this patch. |
Thanks for the reviews! /integrate |
Going to push as commit 961e944. |
TypeAnnotation
is not an annotation, as it should not be used in places likeAnnotationValue.ofAnnotation
. Thus it's remodeled to contain an annotation at a given location instead of to be an annotation.Depends on #20205.
Progress
Issues
Reviewers
Contributors
<abuckley@openjdk.org>
Reviewing
Using
git
Checkout this PR locally:
$ git fetch https://git.openjdk.org/jdk.git pull/20247/head:pull/20247
$ git checkout pull/20247
Update a local copy of the PR:
$ git checkout pull/20247
$ git pull https://git.openjdk.org/jdk.git pull/20247/head
Using Skara CLI tools
Checkout this PR locally:
$ git pr checkout 20247
View PR using the GUI difftool:
$ git pr show -t 20247
Using diff file
Download this PR as a diff file:
https://git.openjdk.org/jdk/pull/20247.diff
Webrev
Link to Webrev Comment