|
|
@ -20,7 +20,6 @@
|
|
|
|
%token INTERFACE
|
|
|
|
%token INTERFACE
|
|
|
|
%token IMPLEMENTS
|
|
|
|
%token IMPLEMENTS
|
|
|
|
%token EXTENDS
|
|
|
|
%token EXTENDS
|
|
|
|
%token SUPER
|
|
|
|
|
|
|
|
%token ENUM
|
|
|
|
%token ENUM
|
|
|
|
%token NEW
|
|
|
|
%token NEW
|
|
|
|
%token INSTANCEOF
|
|
|
|
%token INSTANCEOF
|
|
|
@ -108,25 +107,6 @@ import_name_end:
|
|
|
|
| DOT IDENT import_name_end
|
|
|
|
| DOT IDENT import_name_end
|
|
|
|
{}
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
type_arguments:
|
|
|
|
|
|
|
|
| LANGLE type_argument_list RANGLE
|
|
|
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
type_argument_list:
|
|
|
|
|
|
|
|
| separated_nonempty_list(COMMA, type_argument)
|
|
|
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
type_argument:
|
|
|
|
|
|
|
|
| unann_reference_type // If we decide to parse annotations, it will
|
|
|
|
|
|
|
|
// require change here
|
|
|
|
|
|
|
|
| QMARK wildcard_bounds?
|
|
|
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
wildcard_bounds:
|
|
|
|
|
|
|
|
| EXTENDS unann_reference_type
|
|
|
|
|
|
|
|
| SUPER unann_reference_type
|
|
|
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
package_declaration:
|
|
|
|
package_declaration:
|
|
|
|
| PACKAGE unann_class_or_interface_type SEMICOLON
|
|
|
|
| PACKAGE unann_class_or_interface_type SEMICOLON
|
|
|
|
{ $2 }
|
|
|
|
{ $2 }
|
|
|
|