eclipse-jdt / eclipse-jdt/eclipse.jdt.core
No Type completions on a switch case when the resolved type of switch expression is non-primitive in Java17+
Open
- Dominant language
- Java
- Stars
- 237
- Forks
- 195
- Avg merge
- 1d 12h
- Merged PRs (30d)
- 47
Description
In the following code
```
public class Mapper {
public Integer mapJobState(String value) {
return switch (value) {
case
};
}
}
```
Code completions behind `case M` doesn't provide any completions.
Contributor guide
Assessment
This issue has not been assessed yet.