Skip to content
Snippets Groups Projects
Commit 3a85982d authored by sof's avatar sof
Browse files

[project @ 1997-09-04 20:13:03 by sof]

QCONSYM added
parent 1fb5dd7a
No related branches found
No related tags found
No related merge requests found
......@@ -66,6 +66,7 @@ parseType ls =
VARSYM { ITvarsym $$ }
CONSYM { ITconsym $$ }
QCONID { ITqconid $$ }
QCONSYM { ITqconsym $$ }
UNKNOWN { ITunknown $$ }
%%
......@@ -137,6 +138,7 @@ tv_names :: { [RdrName] }
tc_name :: { RdrName }
tc_name : QCONID { lexTcQual $1 }
| QCONSYM { lexTcQual $1 }
| CONID { Unqual (TCOcc $1) }
| CONSYM { Unqual (TCOcc $1) }
| OPAREN RARROW CPAREN { Unqual (TCOcc SLIT("->")) }
......
......@@ -347,6 +347,7 @@ tv_names :: { [RdrName] }
tc_name :: { RdrName }
tc_name : QCONID { lexTcQual $1 }
| QCONSYM { lexTcQual $1 }
| CONID { Unqual (TCOcc $1) }
| CONSYM { Unqual (TCOcc $1) }
| OPAREN RARROW CPAREN { Unqual (TCOcc SLIT("->")) }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment