Add EOL to EXPRESSION_FOLLOW recovery set

This change is used in further commits, but it's extracted
to emphasize that testData modifications are caused by this.
This commit is contained in:
Denis Zharkov
2016-07-13 11:37:14 +03:00
parent e224041760
commit fcb870a303
2 changed files with 16 additions and 7 deletions
@@ -128,7 +128,7 @@ public class KotlinExpressionParsing extends AbstractKotlinParsing {
TokenSet.create(EOL_OR_SEMICOLON));
/*package*/ static final TokenSet EXPRESSION_FOLLOW = TokenSet.create(
SEMICOLON, ARROW, COMMA, RBRACE, RPAR, RBRACKET
EOL_OR_SEMICOLON, ARROW, COMMA, RBRACE, RPAR, RBRACKET
);
@SuppressWarnings({"UnusedDeclaration"})