A potential enhancement about switch at JavacParser

Guoxiong Li lgxbslgx at gmail.com
Sun May 30 13:48:27 UTC 2021


Hi all,

Currently, we have the switch statement and switch expression.
They have some different points. For example, the `yield` only can
be enclosed in the switch expression. But in general, they may be
the same in many situations, especially only considering their
syntactic struct.

Please see the following productions excerpted from the JLS.



*SwitchStatement:     switch ( Expression ) SwitchBlock*


*SwitchExpression:      switch ( Expression ) SwitchBlock*

They use the same `SwitchBlock` to construct the AST. But currently,
the parser uses different methods to construct them.

1. The class `JavacParser` uses methods `switchExpressionStatementGroup`
and `switchBlockStatementGroup` to separately construct the `case` subtree
of the switch expression and the switch statement.

2. And  the `case SWITCH` clause of the method `term3` (where the switch
expression is implemented)
and  the method `switchBlockStatementGroups` has the similar code snippet
to construct the switch body.

Maybe the methods of the two aspects above can be merged to clean up the
code
and reduce the complication of the parser.

And the codes mentioned above have other places that need to be adjusted.
For example, the return type of the method `switchExpressionStatementGroup`
and
`switchBlockStatementGroup` could be the `JCCase` instead of the
`List<JCCase>`.

What do you think about this enhancement?
Could someone who implemented the switch expression provide more
information on why the different methods were used?
Any ideas are appreciated.

And considering that the `Pattern matching for switch` may revise these
codes
and the Rampdown Phase One is coming soon, if we confirm this enhancement
is feasible, it is best to complete it at JDK 18 so that the feature of the
`Pattern matching for switch` won't be affected.

Best Regards,
-- Guoxiong
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mail.openjdk.java.net/pipermail/compiler-dev/attachments/20210530/0491e435/attachment.htm>


More information about the compiler-dev mailing list