Skip to content
Snippets Groups Projects
Commit 14e7206d authored by Simon Marlow's avatar Simon Marlow
Browse files

[project @ 1999-06-14 11:11:29 by simonmar]

Allow ``...'' as argument of __casm.
parent e9cb71bc
No related branches found
No related tags found
No related merge requests found
......@@ -152,6 +152,7 @@ import Ratio ( (%) )
STRING { ITstring $$ }
INTEGER { ITinteger $$ }
RATIONAL { ITrational $$ }
CLITLIT { ITlitlit $$ }
UNKNOWN { ITunknown $$ }
%%
......@@ -737,6 +738,7 @@ core_tv_bndr : '@' tv_name '::' akind { UfTyBinder $2 $4 }
ccall_string :: { FAST_STRING }
: STRING { $1 }
| CLITLIT { $1 }
| VARID { $1 }
| CONID { $1 }
......
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