Merge branch 'java-grammar' into typeres-jtypes

This commit is contained in:
Clément Fournier
2020-08-23 21:33:32 +02:00
4 changed files with 30 additions and 3 deletions

View File

@ -2224,9 +2224,9 @@ void BlockStatement() #void:
private void LocalTypeStartNoIdent() #void: // A lookahead
{}
{ // notice: not default
"public" | "static" | "protected" | "private" | "final"
| "abstract" | "synchronized" | "native" | "transient"
{ // notice: not default, not synchronized, not final
"public" | "static" | "protected" | "private"
| "abstract" | "native" | "transient"
| "volatile" | "strictfp"
| "class" | "interface"