summaryrefslogtreecommitdiff
path: root/testdata/reduce06.out
diff options
context:
space:
mode:
authorPéter Diviánszky <divipp@gmail.com>2016-05-10 23:19:47 +0200
committerPéter Diviánszky <divipp@gmail.com>2016-05-10 23:20:23 +0200
commit95e006bf5afa8d3473e3fe4401f4c9316186a428 (patch)
tree7635fda3305339173988296051acc5a77dbb746f /testdata/reduce06.out
parent6ecef8f577432ffcaee07f09b2a73d4ea5eb5de2 (diff)
include info in more .out files; fix parsing of as-patterns
Diffstat (limited to 'testdata/reduce06.out')
-rw-r--r--testdata/reduce06.out34
1 files changed, 33 insertions, 1 deletions
diff --git a/testdata/reduce06.out b/testdata/reduce06.out
index 4791ed55..2ddd9a75 100644
--- a/testdata/reduce06.out
+++ b/testdata/reduce06.out
@@ -1 +1,33 @@
1True \ No newline at end of file 1main :: Bool
2main = True
3------------ desugared source code
4constf = _lhs constf (_rhs \(a :: _) (_ :: _) -> a)
5
6main = _lhs main (_rhs ((\(a :: _) -> constf a False) True))
7------------ core code
8constf :: forall a b . a -> b -> a
9constf = \_ _ -> _rhs \a _ -> a
10
11main :: Bool
12main = _rhs True
13------------ tooltips
14testdata/reduce06.lc 1:1-1:7
15 forall a b . a -> b -> a
16testdata/reduce06.lc 1:18-1:19
17 _d
18testdata/reduce06.lc 3:1-3:5
19 Bool
20testdata/reduce06.lc 3:8-3:35
21 Bool
22testdata/reduce06.lc 3:15-3:21
23 forall a b . a -> b -> a
24testdata/reduce06.lc 3:15-3:23
25 _a -> _c
26testdata/reduce06.lc 3:15-3:29
27 _b
28testdata/reduce06.lc 3:22-3:23
29 _d
30testdata/reduce06.lc 3:24-3:29
31 Bool
32testdata/reduce06.lc 3:31-3:35
33 Bool \ No newline at end of file