[project @ 1996-06-05 06:44:31 by partain]
[ghc-hetmet.git] / ghc / compiler / parser / literal.ugn
1 %{
2 #include "hspincl.h"
3 %}
4 %{{
5 #include "HsVersions.h"
6
7 module U_literal where
8 IMP_Ubiq() --  debugging consistency check
9 import UgenUtil
10 %}}
11 type literal;
12         integer     : < ginteger    : stringId; >;
13         intprim     : < gintprim    : stringId; >;
14         floatr      : < gfloatr     : stringId; >;
15         doubleprim  : < gdoubleprim : stringId; >;
16         floatprim   : < gfloatprim  : stringId; >;
17         charr       : < gchar       : hstring; >;
18         charprim    : < gcharprim   : hstring; >;
19         string      : < gstring     : hstring; >;
20         stringprim  : < gstringprim : hstring; >;
21         clitlit     : < gclitlit    : stringId; >;
22 end;