-
Notifications
You must be signed in to change notification settings - Fork 6k
8257912: Convert enum iteration to use range-based for loops #1707
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
Conversation
👋 Welcome back iklam! A progress list of the required criteria for merging this PR into |
Webrevs
|
@iklam 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 4 new commits pushed to the
Please see this link for an up-to-date comparison between the source branch of this pull request and the ➡️ To integrate this PR with the above commit message to the |
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.
Lgtm
I like the change very much. Did you consider leaving the convenience symbol "vmSymbolsIterator" as is and then using it in the loop, so instead of:
we would have:
which would be more concise (but less self-documenting I guess) and more similar to:
|
Hi Gerard, thanks for the review.
which is probably less readable, because you have to find out what I think the following pattern is easier to read. It will also make the iteration of different enum types more consistent. Iteration of any enum type E can be done the same way with EnumRange<E>. You don't need to invent a new ERange type.
Note that the You can also initialize a non-default range with |
/integrate |
@iklam Since your change was applied there have been 4 commits pushed to the
Your commit was automatically rebased without conflicts. Pushed as commit 80dac5a. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
Now that range-based for loops are allowed by the HotSpot Style Guide, I have converted the more verbose syntax:
to
I also removed the "convenient" declarations such as
vmIntrinsicsRange
andvmIntrinsicsIterator
-- these are useful only when writing a traditional for loop, and are probably confusing to everyone else. I've left examples in enumIterator.hpp in case anyone wants to write a traditional for loop.I also added gtest cases for using range-based for loops with
EnumRange<>
.Progress
Issue
Reviewers
Download
$ git fetch https://git.openjdk.java.net/jdk pull/1707/head:pull/1707
$ git checkout pull/1707