summaryrefslogtreecommitdiff
path: root/testdata/traceTest.out
diff options
context:
space:
mode:
authorPéter Diviánszky <divipp@gmail.com>2016-04-28 22:43:51 +0200
committerPéter Diviánszky <divipp@gmail.com>2016-04-28 22:43:51 +0200
commit67fd4cabceda047750c19e9bef98e0c25c6ed7dd (patch)
treee64ac6cd1de2583e13f386421b952f32ffb8f955 /testdata/traceTest.out
parent56f6e4fb7b8c0fc6545843d467412fbfa8acb277 (diff)
switch to Haskell style syntax in pretty print
Diffstat (limited to 'testdata/traceTest.out')
-rw-r--r--testdata/traceTest.out26
1 files changed, 13 insertions, 13 deletions
diff --git a/testdata/traceTest.out b/testdata/traceTest.out
index c1529ca6..4d11599e 100644
--- a/testdata/traceTest.out
+++ b/testdata/traceTest.out
@@ -1,21 +1,21 @@
1main is not found 1main is not found
2------------ trace 2------------ trace
3id :: {a} -> a->a 3id :: forall a . a -> a
4'X :: {a} -> a->Type 4'X :: forall a . a -> Type
5'XCase :: {a} -> {b:a} -> (c : 'X a b -> Type) -> (d : 'X a b) -> c d 5'XCase :: forall a (b :: a) . (c :: 'X a b -> Type) -> (d :: 'X a b) -> c d
6match'X :: (a : Type->Type) -> ({b} -> (c:b) -> a ('X b c)) -> (d:Type) -> a d -> a d 6match'X :: (a :: Type -> Type) -> (forall b . (c :: b) -> a ('X b c)) -> (d :: Type) -> a d -> a d
7x :: 'X (Type -> Type->Type) (\(a:Type) (b:Type) -> (a, b)) 7x :: 'X (Type -> Type -> Type) (\(a :: Type) (b :: Type) -> (a, b))
8------------ tooltips 8------------ tooltips
9testdata/traceTest.lc 6:1-6:3 {a} -> a->a 9testdata/traceTest.lc 6:1-6:3 forall a . a -> a
10testdata/traceTest.lc 6:8-6:9 b_ 10testdata/traceTest.lc 6:8-6:9 _b
11testdata/traceTest.lc 8:6-8:7 Type | {a} -> a->Type 11testdata/traceTest.lc 8:6-8:7 Type | forall a . a -> Type
12testdata/traceTest.lc 8:6-8:18 Type 12testdata/traceTest.lc 8:6-8:18 Type
13testdata/traceTest.lc 8:17-8:18 Type 13testdata/traceTest.lc 8:17-8:18 Type
14testdata/traceTest.lc 10:6-10:7 {a} -> a->Type 14testdata/traceTest.lc 10:6-10:7 forall a . a -> Type
15testdata/traceTest.lc 10:6-10:25 Type 15testdata/traceTest.lc 10:6-10:25 Type
16testdata/traceTest.lc 10:17-10:24 Type 16testdata/traceTest.lc 10:17-10:24 Type
17testdata/traceTest.lc 10:19-10:20 e_ 17testdata/traceTest.lc 10:19-10:20 _e
18testdata/traceTest.lc 10:19-10:23 List Type 18testdata/traceTest.lc 10:19-10:23 List Type
19testdata/traceTest.lc 10:22-10:23 List Type | c_ 19testdata/traceTest.lc 10:22-10:23 List Type | _c
20testdata/traceTest.lc 11:1-11:2 X (Type -> Type->Type) (\(a:Type) (b:Type) -> (a, b)) 20testdata/traceTest.lc 11:1-11:2 X (Type -> Type -> Type) (\(a :: Type) (b :: Type) -> (a, b))
21testdata/traceTest.lc 11:5-11:14 {a}->a 21testdata/traceTest.lc 11:5-11:14 forall a . a