Fixing warning in experimental Java source parser

Summary: Removing some dead grammar rules

Reviewed By: jvillard

Differential Revision: D25087155

fbshipit-source-id: 66146cf47
master
David Pichardie 4 years ago committed by Facebook GitHub Bot
parent 606a3c95d9
commit b073b55b1a

@ -91,8 +91,6 @@ rule class_scan = parse
{ VAR } { VAR }
| "extends" | "extends"
{ EXTENDS } { EXTENDS }
| "super"
{ SUPER }
| "implements" | "implements"
{ IMPLEMENTS } { IMPLEMENTS }
| "assert" | "assert"

@ -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 }
@ -146,18 +126,18 @@ class_declaration:
normal_class_declaration: normal_class_declaration:
| CLASS id=identifier superclass? superinterfaces? inner=class_body | CLASS id=identifier superclass? superinterfaces? inner=class_body
{ { { {
location = location_of_pos $startpos(id); location = location_of_pos $startpos(id);
kind = Class id; kind = Class id;
inner_elements = inner; inner_elements = inner;
} }
} }
enum_declaration: enum_declaration:
| ENUM id=identifier superinterfaces? inner=enum_body | ENUM id=identifier superinterfaces? inner=enum_body
{ { { {
location = location_of_pos $startpos(id); location = location_of_pos $startpos(id);
kind = Enum id; kind = Enum id;
inner_elements = inner; inner_elements = inner;
} }
} }
@ -235,9 +215,9 @@ interface_declaration:
normal_interface_declaration: normal_interface_declaration:
| INTERFACE id=identifier inner=interface_body | INTERFACE id=identifier inner=interface_body
{ { { {
location = location_of_pos $startpos(id); location = location_of_pos $startpos(id);
kind = Interface id; kind = Interface id;
inner_elements = inner; inner_elements = inner;
} }
} }
@ -697,11 +677,11 @@ unqualified_class_instance_creation_expression:
{ $4 } { $4 }
| NEW class_or_interface_type_to_instantiate LPAREN args=loption(argument_list) RPAREN inner=class_body | NEW class_or_interface_type_to_instantiate LPAREN args=loption(argument_list) RPAREN inner=class_body
{ args @ { args @
[{ [{
location = location_of_pos $startpos(inner); location = location_of_pos $startpos(inner);
kind = AnonymousClass; kind = AnonymousClass;
inner_elements = inner; inner_elements = inner;
}] }]
} }
conditional_expression: conditional_expression:

Loading…
Cancel
Save