diff options
Diffstat (limited to 'ghc/compiler/parser/entidt.ugn')
-rw-r--r-- | ghc/compiler/parser/entidt.ugn | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/ghc/compiler/parser/entidt.ugn b/ghc/compiler/parser/entidt.ugn new file mode 100644 index 0000000000..eb661c0c73 --- /dev/null +++ b/ghc/compiler/parser/entidt.ugn @@ -0,0 +1,19 @@ +%{ +#include "hspincl.h" +%} +%{{ +module U_entidt where +import Ubiq -- debugging consistency check +import UgenUtil + +import U_list +import U_qid +%}} +type entidt; + entid : < gentid : qid; >; + enttype : < gtentid : qid; >; + enttypeall : < gaentid : qid; >; + enttypenamed : < gnentid : qid; + gnentnames : list; >; + entmod : < gmentid : stringId; >; +end; |