home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / pascal / compcomp / syntex / syntax.grm < prev    next >
Text File  |  1994-07-13  |  541b  |  21 lines

  1. @ grammaire of SYNTEX's Syntax Analyser @
  2.  
  3. '='= Equal.
  4. '{'= B_open.
  5. '}'= B_close.
  6. '['= C_open.
  7. ']'= C_close.
  8. '|'= Alternative.
  9. '%'= End_production.
  10.  
  11. File = ponctuation { ponctuation } production { production }.
  12.  
  13.   ponctuation = Character_ponctuation '=' Name '%'.
  14.  
  15.   production = Name '=' expression '%'.
  16.     expression = term { '|' term }.
  17.       term = factor { factor }.
  18.         factor = '{' expression '}' |
  19.                   '[' expression ']' |
  20.                    Terminal          |
  21.                    Non_terminal.