-
Notifications
You must be signed in to change notification settings - Fork 139
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
Beta java23 #2648
Merged
Merged
Beta java23 #2648
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* Use new IFile.write() to create or replace files * use common FileSystemUtil.saveToDisk(IFile, byte[]) * version bump
* Add support for inline tags within an inlined return - modify AbstractCommentParser to keep track when we are in an inlined return statement and to add inline tags as fragments - add addFragmentToInlineReturn() method - add new test to JavadocTest_16 - fixes eclipse-jdt#1026
generic type to its super type strict analysis: test if removing the cast would change overload resolution. fixes eclipse-jdt#2470
Accept class files with mismatching parameter count vis-a-vis parameter annotations (which is legal since Java 9). Also introduces system property jdt.reject.parameterAnnotations.countMismatch to get back the previous error reporting. fixes eclipse-jdt#2625
…nce compiles even when the switch expression does not cover all possible input values (eclipse-jdt#2621) * Fixes eclipse-jdt#2503
- `List<String> getAllJavaSourceVersionsSupportedByCompiler()` - all Java versions that could be used for Java projects inside Eclipse. The difference to existing `getAllVersions()` API is that later one knows almost all Java versions ever released and might be used not only in JDT core but also in debugger/PDE area. - `boolean isJavaSourceVersionSupportedByCompiler(String version)` - differs from existing `isSupportedJavaVersion()` in the same way as explained above - `String getFirstJavaSourceVersionSupportedByCompiler()` - similar to existing `latestSupportedJavaVersion()` and should return minimal "default" version supported by JDT. API above will be used in JDT UI, Debug (PR's are following), and (most likely) PDE. **Internal** API added in batch compiler `CompilerOptions`: - `getFirstSupportedJavaVersion()` - `getFirstSupportedJdkLevel()` See eclipse-jdt#2536
@mpalat Do you mind using a PR title, that tells us, what's going on? For a fraction of a second I thought: wow, Manoj has completed the beta Java 23 implementation ;-P |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What it does
How to test
Author checklist