diff options
Diffstat (limited to 'frontend/syntax.icl')
-rw-r--r-- | frontend/syntax.icl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/frontend/syntax.icl b/frontend/syntax.icl index 900cc3d..f0cf4b1 100644 --- a/frontend/syntax.icl +++ b/frontend/syntax.icl @@ -502,7 +502,7 @@ where (<<<) file PE_Empty = file <<< "** E **" (<<<) file (PE_Ident symb) = file <<< symb (<<<) file PE_WildCard = file <<< '_' - (<<<) file (PE_Lambda _ exprs expr _) = file <<< '\\' <<< exprs <<< " -> " <<< expr + (<<<) file (PE_Lambda _ exprs rhs _) = file <<< '\\' <<< exprs <<< rhs (<<<) file (PE_Bound bind) = file <<< bind (<<<) file (PE_Case _ expr alts) = file <<< "case " <<< expr <<< " of\n" <<< alts (<<<) file (PE_Let defs expr) = file <<< "let " <<< defs <<< " in\n" <<< expr |