newer version

This commit is contained in:
ceriel
1986-05-28 18:36:51 +00:00
parent a504ee7e09
commit cb9213bf8c
23 changed files with 671 additions and 196 deletions

View File

@@ -231,7 +231,7 @@ Semicolon:
{ warning("; expected"); }
;
ProgramModule(int state;)
ProgramModule
{
struct idf *id;
struct def *GetDefinitionModule();
@@ -267,16 +267,15 @@ ProgramModule(int state;)
'.'
;
Module
{
int state = PROGRAM;
} :
Module:
DefinitionModule
|
[
IMPLEMENTATION { state = IMPLEMENTATION; }
]?
ProgramModule(state)
|
{ state = PROGRAM; }
]
ProgramModule
;
CompilationUnit: