summaryrefslogtreecommitdiff
path: root/compiler/ghci/Debugger.hs
diff options
context:
space:
mode:
authorPepe Iborra <mnislaih@gmail.com>2007-12-02 12:54:00 +0000
committerPepe Iborra <mnislaih@gmail.com>2007-12-02 12:54:00 +0000
commit7f474b779449109760d133eef5aba0aa3c38474a (patch)
tree32533bfd3a7692ca1adc5b75b01097af2780f92e /compiler/ghci/Debugger.hs
parent5a99cd502b29503578bc6a227bf80f2db9742e79 (diff)
downloadhaskell-7f474b779449109760d133eef5aba0aa3c38474a.tar.gz
refactoring only
Diffstat (limited to 'compiler/ghci/Debugger.hs')
-rw-r--r--compiler/ghci/Debugger.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/ghci/Debugger.hs b/compiler/ghci/Debugger.hs
index 5ae7db8caa..1b1b2c9025 100644
--- a/compiler/ghci/Debugger.hs
+++ b/compiler/ghci/Debugger.hs
@@ -79,7 +79,7 @@ pprintClosureCommand session bindThings force str = do
-- Then, we extract a substitution,
-- mapping the old tyvars to the reconstructed types.
let Just reconstructed_type = termType term
- subst = computeRTTIsubst (idType id) (reconstructed_type)
+ subst = unifyRTTI (idType id) (reconstructed_type)
return (term',subst)
tidyTermTyVars :: Session -> Term -> IO Term