< prev index next >

src/jdk.compiler/share/classes/com/sun/source/util/SimpleTreeVisitor.java

Print this page
rev 56806 : 8232684: Make switch expressions final
Reviewed-by: TBD

*** 262,288 **** public R visitSwitch(SwitchTree node, P p) { return defaultAction(node, p); } /** - * {@preview Associated with switch expressions, a preview feature of - * the Java language. - * - * This method is associated with <i>switch expressions</i>, a preview - * feature of the Java language. Preview features - * may be removed in a future release, or upgraded to permanent - * features of the Java language.} - * * {@inheritDoc} This implementation calls {@code defaultAction}. * * @param node {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} */ @Override - @jdk.internal.PreviewFeature(feature=jdk.internal.PreviewFeature.Feature.SWITCH_EXPRESSIONS) - @SuppressWarnings("preview") public R visitSwitchExpression(SwitchExpressionTree node, P p) { return defaultAction(node, p); } /** --- 262,278 ----
*** 792,802 **** * @param node {@inheritDoc} * @param p {@inheritDoc} * @return the result of {@code defaultAction} */ @Override - @jdk.internal.PreviewFeature(feature=jdk.internal.PreviewFeature.Feature.SWITCH_EXPRESSIONS) - @SuppressWarnings("preview") public R visitYield(YieldTree node, P p) { return defaultAction(node, p); } } --- 782,790 ----
< prev index next >