summaryrefslogtreecommitdiff
path: root/testdata/Internals.out
diff options
context:
space:
mode:
authorPéter Diviánszky <divipp@gmail.com>2016-04-30 00:47:07 +0200
committerPéter Diviánszky <divipp@gmail.com>2016-04-30 00:47:07 +0200
commit1fd867e5beea5b4197f300e2e964c0f6b0035830 (patch)
tree61102cad73ffc7efdbf4ebf589f8ebd7720b3f82 /testdata/Internals.out
parentb08f6a129c452526b7c2667dcd629028d66ebf0a (diff)
fix pretty print syntax
Diffstat (limited to 'testdata/Internals.out')
-rw-r--r--testdata/Internals.out70
1 files changed, 35 insertions, 35 deletions
diff --git a/testdata/Internals.out b/testdata/Internals.out
index 6eb77da3..06c09de3 100644
--- a/testdata/Internals.out
+++ b/testdata/Internals.out
@@ -6,49 +6,49 @@ undefined :: forall a . a
6primFix :: forall a . (a -> a) -> a 6primFix :: forall a . (a -> a) -> a
7'Unit :: Type 7'Unit :: Type
8TT :: 'Unit 8TT :: 'Unit
9'UnitCase :: (a :: 'Unit -> Type) -> a TT -> (b :: 'Unit) -> a b 9'UnitCase :: forall (a :: 'Unit -> Type) -> a TT -> forall (b :: 'Unit) -> a b
10match'Unit :: (a :: Type -> Type) -> a 'Unit -> (b :: Type) -> a b -> a b 10match'Unit :: forall (a :: Type -> Type) -> a 'Unit -> forall b -> a b -> a b
11'String :: Type 11'String :: Type
12'StringCase :: (a :: 'String -> Type) -> (b :: 'String) -> a b 12'StringCase :: forall (a :: 'String -> Type) (b :: 'String) -> a b
13match'String :: (a :: Type -> Type) -> a 'String -> (b :: Type) -> a b -> a b 13match'String :: forall (a :: Type -> Type) -> a 'String -> forall b -> a b -> a b
14'Empty :: 'String -> Type 14'Empty :: 'String -> Type
15'EmptyCase :: forall (a :: 'String) . (b :: 'Empty a -> Type) -> (c :: 'Empty a) -> b c 15'EmptyCase :: forall (a :: 'String) . forall (b :: 'Empty a -> Type) (c :: 'Empty a) -> b c
16match'Empty :: (a :: Type -> Type) -> ((b :: 'String) -> a ('Empty b)) -> (c :: Type) -> a c -> a c 16match'Empty :: forall (a :: Type -> Type) -> (forall (b :: 'String) -> a ('Empty b)) -> forall c -> a c -> a c
17unsafeCoerce :: forall a b . a -> b 17unsafeCoerce :: forall a b . a -> b
18'EqCT :: (a :: Type) -> a -> a -> Type 18'EqCT :: forall a -> a -> a -> Type
19parEval :: (a :: Type) -> a -> a -> a 19parEval :: forall a -> a -> a -> a
20'T2 :: Type -> Type -> Type 20'T2 :: Type -> Type -> Type
21match'Type :: (a :: Type -> Type) -> a Type -> (b :: Type) -> a b -> a b 21match'Type :: forall (a :: Type -> Type) -> a Type -> forall b -> a b -> a b
22'EqCTt :: forall a . a -> a -> Type 22'EqCTt :: forall a . a -> a -> Type
23t2C :: 'Unit -> 'Unit -> 'Unit 23t2C :: 'Unit -> 'Unit -> 'Unit
24'Int :: Type 24'Int :: Type
25'IntCase :: (a :: 'Int -> Type) -> (b :: 'Int) -> a b 25'IntCase :: forall (a :: 'Int -> Type) (b :: 'Int) -> a b
26match'Int :: (a :: Type -> Type) -> a 'Int -> (b :: Type) -> a b -> a b 26match'Int :: forall (a :: Type -> Type) -> a 'Int -> forall b -> a b -> a b
27'Word :: Type 27'Word :: Type
28'WordCase :: (a :: 'Word -> Type) -> (b :: 'Word) -> a b 28'WordCase :: forall (a :: 'Word -> Type) (b :: 'Word) -> a b
29match'Word :: (a :: Type -> Type) -> a 'Word -> (b :: Type) -> a b -> a b 29match'Word :: forall (a :: Type -> Type) -> a 'Word -> forall b -> a b -> a b
30'Float :: Type 30'Float :: Type
31'FloatCase :: (a :: 'Float -> Type) -> (b :: 'Float) -> a b 31'FloatCase :: forall (a :: 'Float -> Type) (b :: 'Float) -> a b
32match'Float :: (a :: Type -> Type) -> a 'Float -> (b :: Type) -> a b -> a b 32match'Float :: forall (a :: Type -> Type) -> a 'Float -> forall b -> a b -> a b
33'Char :: Type 33'Char :: Type
34'CharCase :: (a :: 'Char -> Type) -> (b :: 'Char) -> a b 34'CharCase :: forall (a :: 'Char -> Type) (b :: 'Char) -> a b
35match'Char :: (a :: Type -> Type) -> a 'Char -> (b :: Type) -> a b -> a b 35match'Char :: forall (a :: Type -> Type) -> a 'Char -> forall b -> a b -> a b
36'Bool :: Type 36'Bool :: Type
37False :: 'Bool 37False :: 'Bool
38True :: 'Bool 38True :: 'Bool
39'BoolCase :: (a :: 'Bool -> Type) -> a False -> a True -> (b :: 'Bool) -> a b 39'BoolCase :: forall (a :: 'Bool -> Type) -> a False -> a True -> forall (b :: 'Bool) -> a b
40match'Bool :: (a :: Type -> Type) -> a 'Bool -> (b :: Type) -> a b -> a b 40match'Bool :: forall (a :: Type -> Type) -> a 'Bool -> forall b -> a b -> a b
41'Ordering :: Type 41'Ordering :: Type
42LT :: 'Ordering 42LT :: 'Ordering
43EQ :: 'Ordering 43EQ :: 'Ordering
44GT :: 'Ordering 44GT :: 'Ordering
45'OrderingCase :: (a :: 'Ordering -> Type) -> a LT -> a EQ -> a GT -> (b :: 'Ordering) -> a b 45'OrderingCase :: forall (a :: 'Ordering -> Type) -> a LT -> a EQ -> a GT -> forall (b :: 'Ordering) -> a b
46match'Ordering :: (a :: Type -> Type) -> a 'Ordering -> (b :: Type) -> a b -> a b 46match'Ordering :: forall (a :: Type -> Type) -> a 'Ordering -> forall b -> a b -> a b
47'Nat :: Type 47'Nat :: Type
48Zero :: 'Nat 48Zero :: 'Nat
49Succ :: 'Nat -> 'Nat 49Succ :: 'Nat -> 'Nat
50'NatCase :: (a :: 'Nat -> Type) -> a 0 -> ((b :: 'Nat) -> a (Succ b)) -> (c :: 'Nat) -> a c 50'NatCase :: forall (a :: 'Nat -> Type) -> a 0 -> (forall (b :: 'Nat) -> a (Succ b)) -> forall (c :: 'Nat) -> a c
51match'Nat :: (a :: Type -> Type) -> a 'Nat -> (b :: Type) -> a b -> a b 51match'Nat :: forall (a :: Type -> Type) -> a 'Nat -> forall b -> a b -> a b
52primIntToWord :: 'Int -> 'Word 52primIntToWord :: 'Int -> 'Word
53primIntToFloat :: 'Int -> 'Float 53primIntToFloat :: 'Int -> 'Float
54primIntToNat :: 'Int -> 'Nat 54primIntToNat :: 'Int -> 'Nat
@@ -76,15 +76,15 @@ negate :: forall a . 'Num a => a[
76'List :: Type -> Type 76'List :: Type -> Type
77Nil :: forall a . 'List a 77Nil :: forall a . 'List a
78Cons :: forall a . a -> 'List a -> 'List a 78Cons :: forall a . a -> 'List a -> 'List a
79'ListCase :: forall a . (b :: 'List a -> Type) -> b Nil -> ((c :: a) -> (d :: 'List a) -> b (Cons c d)) -> (e :: 'List a) -> b e 79'ListCase :: forall a . forall (b :: 'List a -> Type) -> b Nil -> (forall (c :: a) (d :: 'List a) -> b (Cons c d)) -> forall (e :: 'List a) -> b e
80match'List :: (a :: Type -> Type) -> ((b :: Type) -> a ('List b)) -> (c :: Type) -> a c -> a c 80match'List :: forall (a :: Type -> Type) -> (forall b -> a ('List b)) -> forall c -> a c -> a c
81'HList :: 'List Type -> Type 81'HList :: 'List Type -> Type
82HNil :: () 82HNil :: ()
83HCons :: forall a (b :: 'List Type) . a -> 'HList b -> 'HList (Cons a b) 83HCons :: forall a (b :: 'List Type) . a -> 'HList b -> 'HList (Cons a b)
84'HListCase :: (a :: (b :: 'List Type) -> 'HList b -> Type) -> a Nil () -> (forall c (d :: 'List Type) . (e :: c) -> (f :: 'HList d) -> a (Cons c d) (HCons c d e f)) -> forall (g :: 'List Type) . (h :: 'HList g) -> a g h 84'HListCase :: forall (a :: forall (b :: 'List Type) -> 'HList b -> Type) -> a Nil () -> (forall c (d :: 'List Type) . forall (e :: c) (f :: 'HList d) -> a (Cons c d) (HCons c d e f)) -> forall (g :: 'List Type) . forall (h :: 'HList g) -> a g h
85match'HList :: (a :: Type -> Type) -> ((b :: 'List Type) -> a ('HList b)) -> (c :: Type) -> a c -> a c 85match'HList :: forall (a :: Type -> Type) -> (forall (b :: 'List Type) -> a ('HList b)) -> forall c -> a c -> a c
86hlistNilCase :: (a :: Type) -> a -> () -> a 86hlistNilCase :: forall a -> a -> () -> a
87hlistConsCase :: forall a (b :: 'List Type) . (c :: Type) -> (a -> 'HList b -> c) -> 'HList (Cons a b) -> c 87hlistConsCase :: forall a (b :: 'List Type) . forall c -> (a -> 'HList b -> c) -> 'HList (Cons a b) -> c
88------------ tooltips 88------------ tooltips
89testdata/Internals.lc 6:1-6:8 forall a . a -> a 89testdata/Internals.lc 6:1-6:8 forall a . a -> a
90testdata/Internals.lc 6:13-6:14 _b 90testdata/Internals.lc 6:13-6:14 _b
@@ -109,19 +109,19 @@ testdata/Internals.lc 19:1-19:13 forall a b . a -> b
109testdata/Internals.lc 19:30-19:31 _d 109testdata/Internals.lc 19:30-19:31 _d
110testdata/Internals.lc 19:30-19:36 Type 110testdata/Internals.lc 19:30-19:36 Type
111testdata/Internals.lc 19:35-19:36 Type | _c 111testdata/Internals.lc 19:35-19:36 Type | _c
112testdata/Internals.lc 22:13-22:17 (a :: Type) -> a -> a -> Type 112testdata/Internals.lc 22:13-22:17 forall a -> a -> a -> Type
113testdata/Internals.lc 22:24-22:28 Type 113testdata/Internals.lc 22:24-22:28 Type
114testdata/Internals.lc 22:36-22:37 Type 114testdata/Internals.lc 22:36-22:37 Type
115testdata/Internals.lc 22:36-22:46 Type 115testdata/Internals.lc 22:36-22:46 Type
116testdata/Internals.lc 22:45-22:46 Type 116testdata/Internals.lc 22:45-22:46 Type
117testdata/Internals.lc 31:1-31:8 (a :: Type) -> a -> a -> a 117testdata/Internals.lc 31:1-31:8 forall a -> a -> a -> a
118testdata/Internals.lc 31:24-31:25 _b 118testdata/Internals.lc 31:24-31:25 _b
119testdata/Internals.lc 31:24-31:35 Type 119testdata/Internals.lc 31:24-31:35 Type
120testdata/Internals.lc 31:29-31:30 Type 120testdata/Internals.lc 31:29-31:30 Type
121testdata/Internals.lc 31:29-31:35 Type 121testdata/Internals.lc 31:29-31:35 Type
122testdata/Internals.lc 31:34-31:35 Type 122testdata/Internals.lc 31:34-31:35 Type
123testdata/Internals.lc 34:13-34:15 Type -> Type -> Type 123testdata/Internals.lc 34:13-34:15 Type -> Type -> Type
124testdata/Internals.lc 36:1-36:11 (a :: Type -> Type) -> a Type -> (b :: Type) -> a b -> a b 124testdata/Internals.lc 36:1-36:11 forall (a :: Type -> Type) -> a Type -> forall b -> a b -> a b
125testdata/Internals.lc 36:28-36:32 Type 125testdata/Internals.lc 36:28-36:32 Type
126testdata/Internals.lc 36:36-36:40 Type 126testdata/Internals.lc 36:36-36:40 Type
127testdata/Internals.lc 36:45-36:46 Type -> Type 127testdata/Internals.lc 36:45-36:46 Type -> Type
@@ -138,7 +138,7 @@ testdata/Internals.lc 36:84-36:85 Type -> Type
138testdata/Internals.lc 36:84-36:87 Type 138testdata/Internals.lc 36:84-36:87 Type
139testdata/Internals.lc 36:86-36:87 Type 139testdata/Internals.lc 36:86-36:87 Type
140testdata/Internals.lc 38:6-38:11 forall a . a -> a -> Type 140testdata/Internals.lc 38:6-38:11 forall a . a -> a -> Type
141testdata/Internals.lc 38:14-38:18 (a :: Type) -> a -> a -> Type 141testdata/Internals.lc 38:14-38:18 forall a -> a -> a -> Type
142testdata/Internals.lc 38:14-38:20 _a -> _a -> Type 142testdata/Internals.lc 38:14-38:20 _a -> _a -> Type
143testdata/Internals.lc 41:1-41:4 Unit -> Unit -> Unit 143testdata/Internals.lc 41:1-41:4 Unit -> Unit -> Unit
144testdata/Internals.lc 41:8-41:12 Type 144testdata/Internals.lc 41:8-41:12 Type
@@ -373,7 +373,7 @@ testdata/Internals.lc 128:39-128:41 List Type -> List Type
373testdata/Internals.lc 128:39-128:44 List Type 373testdata/Internals.lc 128:39-128:44 List Type
374testdata/Internals.lc 128:40-128:41 forall a . a -> List a -> List a 374testdata/Internals.lc 128:40-128:41 forall a . a -> List a -> List a
375testdata/Internals.lc 128:42-128:44 List Type 375testdata/Internals.lc 128:42-128:44 List Type
376testdata/Internals.lc 130:1-130:13 (a :: Type) -> a -> () -> a 376testdata/Internals.lc 130:1-130:13 forall a -> a -> () -> a
377testdata/Internals.lc 130:29-130:30 _b 377testdata/Internals.lc 130:29-130:30 _b
378testdata/Internals.lc 130:29-130:48 Type 378testdata/Internals.lc 130:29-130:48 Type
379testdata/Internals.lc 130:34-130:39 List Type -> Type 379testdata/Internals.lc 130:34-130:39 List Type -> Type
@@ -381,7 +381,7 @@ testdata/Internals.lc 130:34-130:43 Type
381testdata/Internals.lc 130:34-130:48 Type 381testdata/Internals.lc 130:34-130:48 Type
382testdata/Internals.lc 130:40-130:43 forall a . List a 382testdata/Internals.lc 130:40-130:43 forall a . List a
383testdata/Internals.lc 130:47-130:48 Type 383testdata/Internals.lc 130:47-130:48 Type
384testdata/Internals.lc 131:1-131:14 forall a (b :: List Type) . (c :: Type) -> (a -> HList b -> c) -> HList ('Cons a b) -> c 384testdata/Internals.lc 131:1-131:14 forall a (b :: List Type) . forall c -> (a -> HList b -> c) -> HList ('Cons a b) -> c
385testdata/Internals.lc 132:21-132:25 Type 385testdata/Internals.lc 132:21-132:25 Type
386testdata/Internals.lc 132:33-132:37 Type -> Type 386testdata/Internals.lc 132:33-132:37 Type -> Type
387testdata/Internals.lc 132:33-132:42 Type 387testdata/Internals.lc 132:33-132:42 Type