summaryrefslogtreecommitdiff
path: root/src/LambdaCube/Compiler/Pretty.hs
diff options
context:
space:
mode:
authorPéter Diviánszky <divipp@gmail.com>2016-05-11 20:57:07 +0200
committerPéter Diviánszky <divipp@gmail.com>2016-05-12 00:50:34 +0200
commite4725c07ee3e7e3fc010df418d16f37c39b0af0f (patch)
treecb10e1d1203eed875955097311ccbe0943564226 /src/LambdaCube/Compiler/Pretty.hs
parent95e006bf5afa8d3473e3fe4401f4c9316186a428 (diff)
mutual function definitions
Diffstat (limited to 'src/LambdaCube/Compiler/Pretty.hs')
-rw-r--r--src/LambdaCube/Compiler/Pretty.hs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/LambdaCube/Compiler/Pretty.hs b/src/LambdaCube/Compiler/Pretty.hs
index e2ebb5e4..204e4893 100644
--- a/src/LambdaCube/Compiler/Pretty.hs
+++ b/src/LambdaCube/Compiler/Pretty.hs
@@ -320,6 +320,7 @@ infixl 4 `DApp`
320 320
321pattern DAt x = DGlue (InfixR 20) (DText "@") x 321pattern DAt x = DGlue (InfixR 20) (DText "@") x
322pattern DApp x y = DSep (InfixL 10) x y 322pattern DApp x y = DSep (InfixL 10) x y
323pattern DHApp x y = DSep (InfixL 10) x (DAt y)
323pattern DSemi x y = DOp ";" (InfixR (-19)) x y 324pattern DSemi x y = DOp ";" (InfixR (-19)) x y
324pattern DArr_ s x y = DOp s (InfixR (-1)) x y -- -> => . 325pattern DArr_ s x y = DOp s (InfixR (-1)) x y -- -> => .
325pattern DCstr x y = DOp "~" (Infix (-2)) x y 326pattern DCstr x y = DOp "~" (Infix (-2)) x y