Skip to content

Commit

Permalink
Skip lambda checks in switch expressions
Browse files Browse the repository at this point in the history
Update `SpringLambdaCheck` to skip switch statement "arrow case"
labels.

Fixes gh-300
  • Loading branch information
philwebb committed Oct 7, 2021
1 parent 3aeeba7 commit a4cd7e2
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ public int[] getAcceptableTokens() {

@Override
public void visitToken(DetailAST ast) {
if (ast.getType() == TokenTypes.LAMBDA) {
if (ast.getType() == TokenTypes.LAMBDA && ast.getParent() != null
&& ast.getParent().getType() != TokenTypes.SWITCH_RULE) {
visitLambda(ast);
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
+0 errors
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
/*
* Copyright 2017-2019 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

import java.util.function.Function;

/**
* Lambda in a switch statement.
*
* @author Josef Reichardt
*/
public class LambdaSwitch {

private void sayHello(String[] args) {
Function<Integer, String> getText = (cnt) -> "Number of args: " + cnt;
String message = switch (args.length) {
case 0 -> "No arg";
case 1 -> "One arg";
default -> getText.apply(args.length);
};
System.out.println(message);
}
}

0 comments on commit a4cd7e2

Please sign in to comment.