diff options
author | Simon Peyton Jones <simonpj@microsoft.com> | 2011-09-14 17:21:57 +0100 |
---|---|---|
committer | Simon Peyton Jones <simonpj@microsoft.com> | 2011-09-14 17:21:57 +0100 |
commit | a3661c63a076a15e0e5424630e3fedec00160139 (patch) | |
tree | 1e43eace065866f7743fe6b6c1b8aadea7ef4b9e /testsuite/tests/ghci.debugger/scripts/print008.stdout | |
parent | 54ced85910e85112486fbbcd600841ba24a6d93e (diff) | |
download | haskell-a3661c63a076a15e0e5424630e3fedec00160139.tar.gz |
Improved debugger output
It turns out that the new treatment of Integer literals
means that the debugger can see an Integer value more often
than before (it's a value not a thunk). That improves the
debugger output; hence all these diffs.
Diffstat (limited to 'testsuite/tests/ghci.debugger/scripts/print008.stdout')
-rw-r--r-- | testsuite/tests/ghci.debugger/scripts/print008.stdout | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/tests/ghci.debugger/scripts/print008.stdout b/testsuite/tests/ghci.debugger/scripts/print008.stdout index 1b42a99ed4..08bdbf7b1d 100644 --- a/testsuite/tests/ghci.debugger/scripts/print008.stdout +++ b/testsuite/tests/ghci.debugger/scripts/print008.stdout @@ -3,5 +3,5 @@ _t1 :: a () t = O ((_t2::a1) : (_t3::[a1])) () -t = O (Just [(_t4::a1),(_t5::a1)] : (_t6::[Maybe [a1]])) -_t4 :: a1 +t = O (Just [1,1] : (_t4::[Maybe [Integer]])) +_t4 :: [Maybe [Integer]] |