diff options
-rw-r--r-- | frontend/syntax.icl | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/frontend/syntax.icl b/frontend/syntax.icl index edfad93..9f35a45 100644 --- a/frontend/syntax.icl +++ b/frontend/syntax.icl @@ -862,6 +862,10 @@ where = file <<< bv show_expression file (MatchExpr _ expr) = file <<< "match expression" + show_expression file (Let _) + = file <<< "(let ... ) or #" + show_expression file (RecordUpdate _ _ _) + = file <<< "update of record" show_expression file _ = file |