Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //Закоменчен старый код
- own_name ::=
- simple_name own_name_aux
- | operator_symbol own_name_aux
- | CHARACTER_LITERAL own_name_aux
- | selected_name own_name_aux
- | indexed_name own_name_aux
- | slice_name own_name_aux
- | attribute_name own_name_aux
- | external_name own_name_aux
- own_name_aux ::=
- /*empty*/
- | '.' suffix
- //prefix ::= function_call | own_name
- prefix ::= function_call own_name_aux | own_name_aux
- selected_name ::= prefix '.' suffix
- suffix ::=
- simple_name
- | CHARACTER_LITERAL
- | operator_symbol
- | 'all'
- //function_call ::= /*function_*/own_name ('(' actual_parameter_part ')')?
- function_call ::=
- /*function_*/own_name_aux ('(' actual_parameter_part ')')?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement