mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 11:36:59 +07:00
- Support inside switch expression - Support rule-based labels - Support break inside expression - Suggest 'switch' keyword in expressions - Insert ':' or '->' depending on the switch type
9 lines
132 B
Java
9 lines
132 B
Java
public class ConstConfig {
|
|
{
|
|
switch (a) {
|
|
case Foooo -> {}
|
|
default -> <caret>
|
|
|
|
}
|
|
}
|
|
} |