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/print005.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/print005.stdout')
-rw-r--r-- | testsuite/tests/ghci.debugger/scripts/print005.stdout | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/testsuite/tests/ghci.debugger/scripts/print005.stdout b/testsuite/tests/ghci.debugger/scripts/print005.stdout index f2c930a356..b193d1350f 100644 --- a/testsuite/tests/ghci.debugger/scripts/print005.stdout +++ b/testsuite/tests/ghci.debugger/scripts/print005.stdout @@ -1,10 +1,10 @@ Breakpoint 0 activated at ../QSort.hs:5:16-51 Stopped at ../QSort.hs:5:16-51 -_result :: [a] = _ -a :: a = _ -left :: [a] = _ -right :: [a] = _ -right = (_t1::[a]) +_result :: [Integer] = _ +a :: Integer = 8 +left :: [Integer] = _ +right :: [Integer] = _ +right = (_t1::[Integer]) () right = [] left = (_t2::[Integer]) |