Issue #2973: removed unused inferredParameterList from java.g

This commit is contained in:
rnveach 2016-02-28 02:22:02 -05:00 committed by Roman Ivanov
parent cc536c2b91
commit 0feb495a10
1 changed files with 0 additions and 4 deletions

View File

@ -1606,16 +1606,12 @@ lambdaExpression
lambdaParameters
: IDENT
| LPAREN (parameterDeclarationList)? RPAREN
| LPAREN inferredParameterList RPAREN
;
lambdaBody
: (options{generateAmbigWarnings=false;}: expression
| statement)
;
inferredParameterList
: IDENT (COMMA IDENT)*
;
//----------------------------------------------------------------------------