Advertisement
Guest User

Untitled

a guest
Oct 15th, 2015
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. //Закоменчен старый код
  2.  
  3. own_name ::=
  4. simple_name own_name_aux
  5. | operator_symbol own_name_aux
  6. | CHARACTER_LITERAL own_name_aux
  7. | selected_name own_name_aux
  8. | indexed_name own_name_aux
  9. | slice_name own_name_aux
  10. | attribute_name own_name_aux
  11. | external_name own_name_aux
  12.  
  13.  
  14.  
  15.  
  16. own_name_aux ::=
  17. /*empty*/
  18. | '.' suffix
  19.  
  20. //prefix ::= function_call | own_name
  21. prefix ::= function_call own_name_aux | own_name_aux
  22.  
  23.  
  24. selected_name ::= prefix '.' suffix
  25.  
  26. suffix ::=
  27. simple_name
  28. | CHARACTER_LITERAL
  29. | operator_symbol
  30. | 'all'
  31.  
  32. //function_call ::= /*function_*/own_name ('(' actual_parameter_part ')')?
  33. function_call ::=
  34. /*function_*/own_name_aux ('(' actual_parameter_part ')')?
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement