summaryrefslogtreecommitdiff
path: root/testdata/Internals.out
diff options
context:
space:
mode:
authorPéter Diviánszky <divipp@gmail.com>2016-05-01 16:51:22 +0200
committerPéter Diviánszky <divipp@gmail.com>2016-05-01 16:51:22 +0200
commit1a7544763729938e7009ead1e375e9bbf413afb0 (patch)
tree62af78c28cd91597fe40391d4020cb47f697334a /testdata/Internals.out
parent11b4a98c3fc7014cdef123fea4081d58e8edbaa2 (diff)
better namespace handling in pretty print
Diffstat (limited to 'testdata/Internals.out')
-rw-r--r--testdata/Internals.out122
1 files changed, 61 insertions, 61 deletions
diff --git a/testdata/Internals.out b/testdata/Internals.out
index 06c09de3..af664ddd 100644
--- a/testdata/Internals.out
+++ b/testdata/Internals.out
@@ -5,86 +5,86 @@ parens :: forall a . a -> a
5undefined :: forall a . a 5undefined :: 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 :: forall (a :: 'Unit -> Type) -> a TT -> forall (b :: 'Unit) -> a b 9'UnitCase :: forall (a :: Unit -> Type) -> a 'TT -> forall (b :: Unit) -> a b
10match'Unit :: forall (a :: Type -> Type) -> a 'Unit -> forall b -> 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 :: forall (a :: 'String -> Type) (b :: 'String) -> a b 12'StringCase :: forall (a :: String -> Type) (b :: String) -> a b
13match'String :: forall (a :: Type -> Type) -> a 'String -> forall b -> 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) . forall (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 :: forall (a :: Type -> Type) -> (forall (b :: 'String) -> a ('Empty b)) -> forall c -> 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 :: forall a -> a -> a -> Type 18'EqCT :: forall a -> a -> a -> Type
19parEval :: forall a -> a -> a -> a 19parEval :: forall a -> a -> a -> a
20'T2 :: Type -> Type -> Type 20'T2 :: Type -> Type -> Type
21match'Type :: forall (a :: Type -> Type) -> a Type -> forall b -> 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 :: forall (a :: 'Int -> Type) (b :: 'Int) -> a b 25'IntCase :: forall (a :: Int -> Type) (b :: Int) -> a b
26match'Int :: forall (a :: Type -> Type) -> a 'Int -> forall b -> 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 :: forall (a :: 'Word -> Type) (b :: 'Word) -> a b 28'WordCase :: forall (a :: Word -> Type) (b :: Word) -> a b
29match'Word :: forall (a :: Type -> Type) -> a 'Word -> forall b -> 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 :: forall (a :: 'Float -> Type) (b :: 'Float) -> a b 31'FloatCase :: forall (a :: Float -> Type) (b :: Float) -> a b
32match'Float :: forall (a :: Type -> Type) -> a 'Float -> forall b -> 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 :: forall (a :: 'Char -> Type) (b :: 'Char) -> a b 34'CharCase :: forall (a :: Char -> Type) (b :: Char) -> a b
35match'Char :: forall (a :: Type -> Type) -> a 'Char -> forall b -> 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 :: forall (a :: 'Bool -> Type) -> a False -> a True -> forall (b :: 'Bool) -> a b 39'BoolCase :: forall (a :: Bool -> Type) -> a 'False -> a 'True -> forall (b :: Bool) -> a b
40match'Bool :: forall (a :: Type -> Type) -> a 'Bool -> forall b -> 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 :: forall (a :: 'Ordering -> Type) -> a LT -> a EQ -> a GT -> forall (b :: 'Ordering) -> a b 45'OrderingCase :: forall (a :: Ordering -> Type) -> a 'LT -> a 'EQ -> a 'GT -> forall (b :: Ordering) -> a b
46match'Ordering :: forall (a :: Type -> Type) -> a 'Ordering -> forall b -> 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 :: forall (a :: 'Nat -> Type) -> a 0 -> (forall (b :: 'Nat) -> a (Succ b)) -> forall (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 :: forall (a :: Type -> Type) -> a 'Nat -> forall b -> 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
55primCompareInt :: 'Int -> 'Int -> 'Ordering 55primCompareInt :: Int -> Int -> Ordering
56primCompareWord :: 'Word -> 'Word -> 'Ordering 56primCompareWord :: Word -> Word -> Ordering
57primCompareFloat :: 'Float -> 'Float -> 'Ordering 57primCompareFloat :: Float -> Float -> Ordering
58primCompareChar :: 'Char -> 'Char -> 'Ordering 58primCompareChar :: Char -> Char -> Ordering
59primCompareString :: 'String -> 'String -> 'Ordering 59primCompareString :: String -> String -> Ordering
60primNegateInt :: 'Int -> 'Int 60primNegateInt :: Int -> Int
61primNegateWord :: 'Word -> 'Word 61primNegateWord :: Word -> Word
62primNegateFloat :: 'Float -> 'Float 62primNegateFloat :: Float -> Float
63primAddInt :: 'Int -> 'Int -> 'Int 63primAddInt :: Int -> Int -> Int
64primSubInt :: 'Int -> 'Int -> 'Int 64primSubInt :: Int -> Int -> Int
65primModInt :: 'Int -> 'Int -> 'Int 65primModInt :: Int -> Int -> Int
66primSqrtFloat :: 'Float -> 'Float 66primSqrtFloat :: Float -> Float
67primRound :: 'Float -> 'Int 67primRound :: Float -> Int
68primIfThenElse :: forall a . 'Bool -> a -> a -> a 68primIfThenElse :: forall a . Bool -> a -> a -> a
69isEQ :: 'Ordering -> 'Bool 69isEQ :: Ordering -> Bool
70'Num :: Type -> Type 70'Num :: Type -> Type
71fromInt :: forall a . 'Num a => 'Int -> a 71fromInt :: forall a . Num a => Int -> a
72compare :: forall a . 'Num a => a -> a -> 'Ordering 72compare :: forall a . Num a => a -> a -> Ordering
73negate :: forall a . 'Num a => a -> a 73negate :: forall a . Num a => a -> a
74'Eq :: Type -> Type 74'Eq :: Type -> Type
75== :: forall a . 'Eq a => a -> a -> 'Bool 75== :: forall a . Eq a => a -> a -> Bool
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 . forall (b :: 'List a -> Type) -> b Nil -> (forall (c :: a) (d :: 'List a) -> b (Cons c d)) -> forall (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 :: forall (a :: Type -> Type) -> (forall b -> a ('List b)) -> forall c -> 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 :: 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 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 :: forall (a :: Type -> Type) -> (forall (b :: 'List Type) -> a ('HList b)) -> forall c -> a c -> a c 85match'HList :: forall (a :: Type -> Type) -> (forall (b :: List Type) -> a (HList b)) -> forall c -> a c -> a c
86hlistNilCase :: forall a -> a -> () -> a 86hlistNilCase :: forall a -> a -> () -> a
87hlistConsCase :: forall a (b :: 'List Type) . forall c -> (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