Skip to content

Commit fcb8e6f

Browse files
committed
Update lambda_expression.java
Creates lambda expression for Java 8
1 parent 14555ee commit fcb8e6f

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

dynamicjava/src/koala/dynamicjava/parser/lambda_expression.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ public class LambdaExpression extends PrimaryExpression {
77
private Option<List<String>> inferredParams;
88
// A lambda expression have either the block as its body, the body could also be an expression,
99
//refer to Java 8 documentation for details
10+
//lambda expression for Java8
1011
private Option<BlockStatement> blockBD;
1112
private Option<Expression> exprBD;
1213
public LambdaExpression(List<FormalParameter> typedParams,

0 commit comments

Comments
 (0)