-
Notifications
You must be signed in to change notification settings - Fork 869
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6253 from dbalek/dbalek/jsva-cc-21
Code completion modified to support JDK 21 features.
- Loading branch information
Showing
51 changed files
with
599 additions
and
1,732 deletions.
There are no files selected for viewing
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
208 changes: 167 additions & 41 deletions
208
java/java.completion/src/org/netbeans/modules/java/completion/JavaCompletionTask.java
Large diffs are not rendered by default.
Oops, something went wrong.
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
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
101 changes: 0 additions & 101 deletions
101
...pletion/JavaCompletionTaskTest/1.8/AutoCompletion_CaseLabels_PatternMatchingSwitch_2.pass
This file was deleted.
Oops, something went wrong.
100 changes: 0 additions & 100 deletions
100
...pletion/JavaCompletionTaskTest/1.8/AutoCompletion_CaseLabels_PatternMatchingSwitch_3.pass
This file was deleted.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
...odules/java/completion/JavaCompletionTaskTest/1.8/AutoCompletion_CaseRecordPattern_1.pass
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Point(Number x, Number y) |
13 changes: 13 additions & 0 deletions
13
...odules/java/completion/JavaCompletionTaskTest/1.8/AutoCompletion_CaseRecordPattern_2.pass
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
var | ||
Byte | ||
Double | ||
Float | ||
Integer | ||
Long | ||
Number | ||
Short | ||
com | ||
java | ||
javax | ||
org | ||
sun |
2 changes: 2 additions & 0 deletions
2
...odules/java/completion/JavaCompletionTaskTest/1.8/AutoCompletion_CaseRecordPattern_3.pass
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
n | ||
number |
15 changes: 15 additions & 0 deletions
15
...odules/java/completion/JavaCompletionTaskTest/1.8/AutoCompletion_CaseRecordPattern_4.pass
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
public byte byteValue() | ||
public abstract double doubleValue() | ||
public boolean equals(Object arg0) | ||
public abstract float floatValue() | ||
public final native Class<?> getClass() | ||
public native int hashCode() | ||
public abstract int intValue() | ||
public abstract long longValue() | ||
public final native void notify() | ||
public final native void notifyAll() | ||
public short shortValue() | ||
public String toString() | ||
public final void wait() | ||
public final native void wait(long arg0) | ||
public final void wait(long arg0, int arg1) |
Oops, something went wrong.