Skip to content

Commit

Permalink
Respect lambda Ascii/Unicode (#1838)
Browse files Browse the repository at this point in the history
- Closes #1836
  • Loading branch information
janmasrovira authored Feb 10, 2023
1 parent 33a0675 commit d2eb020
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Juvix/Compiler/Concrete/Pretty/Base.hs
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,8 @@ instance (SingI s) => PrettyCode (Case s) where
instance (SingI s) => PrettyCode (Lambda s) where
ppCode Lambda {..} = do
lambdaClauses' <- bracesIndent <$> ppPipeBlock _lambdaClauses
return $ kwLambda <+> lambdaClauses'
lambdaKw' <- ppCode _lambdaKw
return $ lambdaKw' <+> lambdaClauses'

instance (SingI s) => PrettyCode (FunctionClause s) where
ppCode FunctionClause {..} = do
Expand Down

0 comments on commit d2eb020

Please sign in to comment.