1
0
forked from GitHub/gf-core

Started with unions.

This commit is contained in:
aarne
2004-02-27 07:43:52 +00:00
parent 2e1b578783
commit 0166b27ee4
14 changed files with 1324 additions and 1182 deletions

View File

@@ -61,6 +61,7 @@ transModBody x = case x of
MBody extend opens topdefs -> failure x
MWith id opens -> failure x
MReuse id -> failure x
MUnion includeds -> failure x
transExtend :: Extend -> Result
@@ -95,6 +96,12 @@ transQualOpen x = case x of
QOInterface -> failure x
transIncluded :: Included -> Result
transIncluded x = case x of
IAll id -> failure x
ISome id ids -> failure x
transDef :: Def -> Result
transDef x = case x of
DDecl ids exp -> failure x
@@ -209,6 +216,8 @@ transExp x = case x of
EConcat exp0 exp -> failure x
EGlue exp0 exp -> failure x
ELet locdefs exp -> failure x
ELetb locdefs exp -> failure x
EWhere exp locdefs -> failure x
EEqs equations -> failure x
ELString lstring -> failure x
ELin id -> failure x