home *** CD-ROM | disk | FTP | other *** search
- @ grammaire of SYNTEX's Syntax Analyser @
-
- '='= Equal.
- '{'= B_open.
- '}'= B_close.
- '['= C_open.
- ']'= C_close.
- '|'= Alternative.
- '%'= End_production.
-
- File = ponctuation { ponctuation } production { production }.
-
- ponctuation = Character_ponctuation '=' Name '%'.
-
- production = Name '=' expression '%'.
- expression = term { '|' term }.
- term = factor { factor }.
- factor = '{' expression '}' |
- '[' expression ']' |
- Terminal |
- Non_terminal.