diff options
Diffstat (limited to 'compiler/GHC/Plugins.hs')
-rw-r--r-- | compiler/GHC/Plugins.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/GHC/Plugins.hs b/compiler/GHC/Plugins.hs index 9eb540dc9e..8a8599172e 100644 --- a/compiler/GHC/Plugins.hs +++ b/compiler/GHC/Plugins.hs @@ -163,7 +163,8 @@ import qualified Language.Haskell.TH as TH GHC.Plugins.Monad does not depend on GHC.Tc.Utils.Env -} instance MonadThings CoreM where lookupThing name = do { hsc_env <- getHscEnv - ; liftIO $ lookupGlobal hsc_env name } + -- TODO interactive context? + ; liftIO $ lookupGlobal hsc_env Nothing name } {- ************************************************************************ |