Merge branch 'targetBytecode' of ssh://gitea.hb.dhbw-stuttgart.de:2222/JavaTX/JavaCompilerCore into targetBytecode
All checks were successful
Build and Test with Maven / Build-and-test-with-Maven (push) Successful in 2m51s

This commit is contained in:
Daniel Holle 2024-04-10 09:42:47 +02:00
commit d405b0c3a2

View File

@ -34,6 +34,11 @@ public class SyntacticSugar {
public void visit(ReturnVoid aReturn) { public void visit(ReturnVoid aReturn) {
hasReturn = true; hasReturn = true;
} }
@Override
public void visit(LambdaExpression le) {
//PL 2024-04-09 Do nothing, as in a LambdaExpression a return could be
}
} }
private static boolean hasReturn(Block block) { private static boolean hasReturn(Block block) {