Commit 1466261 1 parent 1f6873c commit 1466261 Copy full SHA for 1466261
File tree 4 files changed +7
-5
lines changed
data/examples/declaration/value/function
src/Ormolu/Printer/Meat/Declaration
4 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 3
3
* Format multiple files in parallel. [ Issue
4
4
1128] ( https://github.com/tweag/ormolu/issues/1128 ) .
5
5
6
+ * Correctly format type applications of ` QuasiQuotes ` . [ Issue
7
+ 1134] ( https://github.com/tweag/ormolu/issues/1134 ) .
8
+
6
9
## Ormolu 0.7.7.0
7
10
8
11
* Use single-line layout for parens around single-line content. [ Issue
Original file line number Diff line number Diff line change @@ -22,3 +22,5 @@ test x = case x of
22
22
@ u
23
23
v ->
24
24
" "
25
+
26
+ foo = foo @ [k | bar | ]
Original file line number Diff line number Diff line change @@ -17,3 +17,5 @@ test x = case x of
17
17
Bar
18
18
@ t @ u v
19
19
-> " "
20
+
21
+ foo = foo @ [k | bar | ]
Original file line number Diff line number Diff line change @@ -672,11 +672,6 @@ p_hsExpr' isApp s = \case
672
672
breakpoint
673
673
inci $ do
674
674
txt " @"
675
- -- Insert a space when the type is represented as a TH splice to avoid
676
- -- gluing @ and $ together.
677
- case unLoc (hswc_body a) of
678
- HsSpliceTy {} -> space
679
- _ -> return ()
680
675
located (hswc_body a) p_hsType
681
676
OpApp _ x op y -> do
682
677
modFixityMap <- askModuleFixityMap
You can’t perform that action at this time.
0 commit comments