-
Notifications
You must be signed in to change notification settings - Fork 141
Downgrade subtyping/cast failures from errors to warnings #1872
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
| # 0: type, 1: type | ||
| compiler.warn.suspicious.nullness.conversion=\ | ||
| Suspicious nullness conversion\n\ | ||
| required: {0}!\n\ |
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.
Note the ! here -- it's an hack, since the compiler swallows it :-(
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.
hehe, good one
|
👋 Welcome back mcimadamore! A progress list of the required criteria for merging this PR into |
|
@mcimadamore 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 |
vicente-romero-oracle
left a comment
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
|
/integrate |
|
Going to push as commit 0920450. |
|
@mcimadamore Pushed as commit 0920450. 💡 You may see a message that your pull request was closed with unmerged commits. This can be safely ignored. |
This PR reverts all changes to subtyping and cast conversion, meaning that assigning
nullto a null-restricted type is no longer an error.I've resurrected the lint
nullcategory, to issue a warning in such cases.There's some stuff left to do, as I realized that the compiler swallows null markers when emitting diagnostics. This is due to a conundrum in the diagnostic formatter calling
stripMetadata, and that resulting in all metadata (not just type annos) to be lost.Progress
Reviewers
Reviewing
Using
gitCheckout this PR locally:
$ git fetch https://git.openjdk.org/valhalla.git pull/1872/head:pull/1872$ git checkout pull/1872Update a local copy of the PR:
$ git checkout pull/1872$ git pull https://git.openjdk.org/valhalla.git pull/1872/headUsing Skara CLI tools
Checkout this PR locally:
$ git pr checkout 1872View PR using the GUI difftool:
$ git pr show -t 1872Using diff file
Download this PR as a diff file:
https://git.openjdk.org/valhalla/pull/1872.diff
Using Webrev
Link to Webrev Comment