A partial attempt to improve :stepover
[ghc-hetmet.git] / compiler / main / GHC.hs
index 4c14ff6..1fc3605 100644 (file)
@@ -85,8 +85,7 @@ module GHC (
         Resume(resumeStmt, resumeThreadId, resumeBreakInfo, resumeSpan,
                resumeHistory, resumeHistoryIx),
         History(historyBreakInfo, historyEnclosingDecl), 
-        GHC.getHistorySpan, getHistoryModule, getHistoryTick,
-        GHC.findEnclosingDeclSpanByTick,
+        GHC.getHistorySpan, getHistoryModule,
         getResumeContext,
         abandon, abandonAll,
         InteractiveEval.back,
@@ -1988,8 +1987,4 @@ findModule' hsc_env mod_name maybe_pkg =
 getHistorySpan :: Session -> History -> IO SrcSpan
 getHistorySpan sess h = withSession sess $ \hsc_env -> 
                           return$ InteractiveEval.getHistorySpan hsc_env h
-
-findEnclosingDeclSpanByTick :: Session -> Module -> BreakIndex -> IO SrcSpan
-findEnclosingDeclSpanByTick sess m t = withSession sess $ \ hsc_env -> 
-               return$ InteractiveEval.findEnclosingDeclSpanByTick hsc_env m t
 #endif