7115046: Add AST node for lambda expressions

Add tree nodes for representing lambda expressions and update relevant visitors interfaces

Reviewed-by: jjg
This commit is contained in:
Maurizio Cimadamore 2011-11-24 13:36:20 +00:00
parent 469f89911f
commit 41a3a6c5d3
11 changed files with 165 additions and 0 deletions

View file

@ -186,6 +186,11 @@ public interface Tree {
*/
NEW_CLASS(NewClassTree.class),
/**
* Used for instances of {@link LambdaExpressionTree}.
*/
LAMBDA_EXPRESSION(LambdaExpressionTree.class),
/**
* Used for instances of {@link ParenthesizedTree}.
*/