File tree Expand file tree Collapse file tree 34 files changed +664
-44
lines changed
data/local-sig-inlay-hints
ghcide/src/Development/IDE/Plugin Expand file tree Collapse file tree 34 files changed +664
-44
lines changed Original file line number Diff line number Diff line change
1
+ module Infix where
2
+
3
+ f :: a
4
+ f = undefined
5
+ where
6
+ g :: p1 -> p -> p1
7
+ a `g` b = a
Original file line number Diff line number Diff line change
1
+ module Infix where
2
+
3
+ f :: a
4
+ f = undefined
5
+ where
6
+ a `g` b = a
Original file line number Diff line number Diff line change
1
+ module Inline where
2
+
3
+ f :: a
4
+ f = undefined
5
+ where g :: Bool
6
+ g = True
Original file line number Diff line number Diff line change
1
+ module Inline where
2
+
3
+ f :: a
4
+ f = undefined
5
+ where g = True
Original file line number Diff line number Diff line change
1
+ module Nest where
2
+
3
+ f :: Int
4
+ f = g
5
+ where
6
+ g :: Int
7
+ g = h
8
+ h :: Int
9
+ h = k where k :: Int
10
+ k = 3
Original file line number Diff line number Diff line change
1
+ module Nest where
2
+
3
+ f :: Int
4
+ f = g
5
+ where
6
+ g = h
7
+ h = k where k = 3
Original file line number Diff line number Diff line change
1
+ module NoLens where
2
+
3
+ f :: a
4
+ f = undefined
5
+ where
6
+ g = 3
7
+
8
+
9
+
10
+
11
+
12
+
13
+ g :: Int
Original file line number Diff line number Diff line change
1
+ module NoLens where
2
+
3
+ f :: a
4
+ f = undefined
5
+ where
6
+ g = 3
7
+
8
+
9
+
10
+
11
+
12
+
13
+ g :: Int
Original file line number Diff line number Diff line change
1
+ module Operator where
2
+
3
+ f :: a
4
+ f = undefined
5
+ where
6
+ g :: (a -> b ) -> a -> b
7
+ g = ($)
Original file line number Diff line number Diff line change
1
+ module Operator where
2
+
3
+ f :: a
4
+ f = undefined
5
+ where
6
+ g = ($)
You can’t perform that action at this time.
0 commit comments