summaryrefslogtreecommitdiff
path: root/testdata/language-features/basic-values
diff options
context:
space:
mode:
authorPéter Diviánszky <divipp@gmail.com>2016-04-28 00:55:25 +0200
committerPéter Diviánszky <divipp@gmail.com>2016-04-28 00:55:25 +0200
commit08faa2226162892a8f055fa3cb5d8547a3f90bf5 (patch)
treedf5b1693524bbfdb881856a23d0d4c5851ddbf7c /testdata/language-features/basic-values
parent4f17b186afdd0b076d3efc06fe844e1f547b805a (diff)
always show parens
Diffstat (limited to 'testdata/language-features/basic-values')
-rw-r--r--testdata/language-features/basic-values/data01.out12
-rw-r--r--testdata/language-features/basic-values/infix03.out4
-rw-r--r--testdata/language-features/basic-values/typesig04.out12
3 files changed, 14 insertions, 14 deletions
diff --git a/testdata/language-features/basic-values/data01.out b/testdata/language-features/basic-values/data01.out
index 65afa571..55a3f99f 100644
--- a/testdata/language-features/basic-values/data01.out
+++ b/testdata/language-features/basic-values/data01.out
@@ -4,20 +4,20 @@ main is not found
4B :: 'A 4B :: 'A
5C :: 'A 5C :: 'A
6D :: 'A 6D :: 'A
7'ACase :: (a : 'A->Type) -> a B -> a C -> a D -> b:'A -> a b 7'ACase :: (a : 'A->Type) -> a B -> a C -> a D -> (b:'A) -> a b
8match'A :: (a : Type->Type) -> a 'A -> b:Type -> a b -> a b 8match'A :: (a : Type->Type) -> a 'A -> (b:Type) -> a b -> a b
9'E :: Type 9'E :: Type
10F :: 'E 10F :: 'E
11G :: ()->'E 11G :: ()->'E
12H :: 'E 12H :: 'E
13'ECase :: (a : 'E->Type) -> a F -> (b:() -> a (G b)) -> a H -> c:'E -> a c 13'ECase :: (a : 'E->Type) -> a F -> ((b:()) -> a (G b)) -> a H -> (c:'E) -> a c
14match'E :: (a : Type->Type) -> a 'E -> b:Type -> a b -> a b 14match'E :: (a : Type->Type) -> a 'E -> (b:Type) -> a b -> a b
15'D1 :: Type 15'D1 :: Type
16C1 :: 'D1 16C1 :: 'D1
17C2 :: ()->'D1 17C2 :: ()->'D1
18C3 :: 'D1 18C3 :: 'D1
19'D1Case :: (a : 'D1->Type) -> a C1 -> (b:() -> a (C2 b)) -> a C3 -> c:'D1 -> a c 19'D1Case :: (a : 'D1->Type) -> a C1 -> ((b:()) -> a (C2 b)) -> a C3 -> (c:'D1) -> a c
20match'D1 :: (a : Type->Type) -> a 'D1 -> b:Type -> a b -> a b 20match'D1 :: (a : Type->Type) -> a 'D1 -> (b:Type) -> a b -> a b
21------------ tooltips 21------------ tooltips
22testdata/language-features/basic-values/data01.lc 1:6-1:7 Type 22testdata/language-features/basic-values/data01.lc 1:6-1:7 Type
23testdata/language-features/basic-values/data01.lc 1:6-1:13 Type 23testdata/language-features/basic-values/data01.lc 1:6-1:13 Type
diff --git a/testdata/language-features/basic-values/infix03.out b/testdata/language-features/basic-values/infix03.out
index da5c00d2..31c99f85 100644
--- a/testdata/language-features/basic-values/infix03.out
+++ b/testdata/language-features/basic-values/infix03.out
@@ -3,8 +3,8 @@ main is not found
3'D :: Type 3'D :: Type
4D2 :: () -> ()->'D 4D2 :: () -> ()->'D
5D3 :: () -> () -> ()->'D 5D3 :: () -> () -> ()->'D
6'DCase :: (a : 'D->Type) -> (b:() -> c:() -> a (D2 b c)) -> (d:() -> e:() -> f:() -> a (D3 d e f)) -> g:'D -> a g 6'DCase :: (a : 'D->Type) -> ((b:()) -> (c:()) -> a (D2 b c)) -> ((d:()) -> (e:()) -> (f:()) -> a (D3 d e f)) -> (g:'D) -> a g
7match'D :: (a : Type->Type) -> a 'D -> b:Type -> a b -> a b 7match'D :: (a : Type->Type) -> a 'D -> (b:Type) -> a b -> a b
8d2 :: () -> ()->'D 8d2 :: () -> ()->'D
9d3 :: () -> () -> ()->'D 9d3 :: () -> () -> ()->'D
10------------ tooltips 10------------ tooltips
diff --git a/testdata/language-features/basic-values/typesig04.out b/testdata/language-features/basic-values/typesig04.out
index 773e6f5a..fe8c7208 100644
--- a/testdata/language-features/basic-values/typesig04.out
+++ b/testdata/language-features/basic-values/typesig04.out
@@ -1,7 +1,7 @@
1main is not found 1main is not found
2------------ trace 2------------ trace
3fun1 :: {a} -> {b} -> {c} -> a -> b->c -> () 3fun1 :: {a} -> {b} -> {c} -> a -> (b->c)->()
4fun2 :: {a} -> {b} -> {c} -> a -> b->c -> () 4fun2 :: {a} -> {b} -> {c} -> a -> (b->c)->()
5------------ tooltips 5------------ tooltips
6testdata/language-features/basic-values/typesig04.lc 1:9-1:10 f_ 6testdata/language-features/basic-values/typesig04.lc 1:9-1:10 f_
7testdata/language-features/basic-values/typesig04.lc 1:9-1:28 Type 7testdata/language-features/basic-values/typesig04.lc 1:9-1:28 Type
@@ -9,13 +9,13 @@ testdata/language-features/basic-values/typesig04.lc 1:14-1:28 Type
9testdata/language-features/basic-values/typesig04.lc 1:15-1:16 e_ 9testdata/language-features/basic-values/typesig04.lc 1:15-1:16 e_
10testdata/language-features/basic-values/typesig04.lc 1:20-1:21 Type | d_ 10testdata/language-features/basic-values/typesig04.lc 1:20-1:21 Type | d_
11testdata/language-features/basic-values/typesig04.lc 1:26-1:28 Type 11testdata/language-features/basic-values/typesig04.lc 1:26-1:28 Type
12testdata/language-features/basic-values/typesig04.lc 2:1-2:5 {a} -> {b} -> {c} -> a -> b->c -> () 12testdata/language-features/basic-values/typesig04.lc 2:1-2:5 {a} -> {b} -> {c} -> a -> (b->c)->()
13testdata/language-features/basic-values/typesig04.lc 2:12-2:14 () | c_ -> c_->c_ -> () | c_->c_ -> () 13testdata/language-features/basic-values/typesig04.lc 2:12-2:14 () | (c_->c_)->() | c_ -> (c_->c_)->()
14testdata/language-features/basic-values/typesig04.lc 4:7-4:8 f_ 14testdata/language-features/basic-values/typesig04.lc 4:7-4:8 f_
15testdata/language-features/basic-values/typesig04.lc 4:7-4:20 Type 15testdata/language-features/basic-values/typesig04.lc 4:7-4:20 Type
16testdata/language-features/basic-values/typesig04.lc 4:10-4:20 Type 16testdata/language-features/basic-values/typesig04.lc 4:10-4:20 Type
17testdata/language-features/basic-values/typesig04.lc 4:11-4:12 e_ 17testdata/language-features/basic-values/typesig04.lc 4:11-4:12 e_
18testdata/language-features/basic-values/typesig04.lc 4:14-4:15 Type | d_ 18testdata/language-features/basic-values/typesig04.lc 4:14-4:15 Type | d_
19testdata/language-features/basic-values/typesig04.lc 4:18-4:20 Type 19testdata/language-features/basic-values/typesig04.lc 4:18-4:20 Type
20testdata/language-features/basic-values/typesig04.lc 5:1-5:5 {a} -> {b} -> {c} -> a -> b->c -> () 20testdata/language-features/basic-values/typesig04.lc 5:1-5:5 {a} -> {b} -> {c} -> a -> (b->c)->()
21testdata/language-features/basic-values/typesig04.lc 5:12-5:14 () | c_ -> c_->c_ -> () | c_->c_ -> () 21testdata/language-features/basic-values/typesig04.lc 5:12-5:14 () | (c_->c_)->() | c_ -> (c_->c_)->()