diff options
author | Sylvain Henry <sylvain@haskus.fr> | 2020-02-18 11:08:48 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2020-02-21 20:46:40 -0500 |
commit | 240f5bf6f53515535be5bf3ef7632aa69ae21e3e (patch) | |
tree | dc7be78ca126c66af0aeb9f7944ebfc0ac5a211c /compiler/parser | |
parent | be7068a6130f394dcefbcb5d09c2944deca2270d (diff) | |
download | haskell-240f5bf6f53515535be5bf3ef7632aa69ae21e3e.tar.gz |
Modules: Driver (#13009)
submodule updates: nofib, haddock
Diffstat (limited to 'compiler/parser')
-rw-r--r-- | compiler/parser/Lexer.x | 2 | ||||
-rw-r--r-- | compiler/parser/Parser.y | 8 | ||||
-rw-r--r-- | compiler/parser/RdrHsSyn.hs | 2 |
3 files changed, 6 insertions, 6 deletions
diff --git a/compiler/parser/Lexer.x b/compiler/parser/Lexer.x index 7b280086ad..050a49c8c6 100644 --- a/compiler/parser/Lexer.x +++ b/compiler/parser/Lexer.x @@ -102,7 +102,7 @@ import Util ( readRational, readHexRational ) -- compiler/main import ErrUtils -import DynFlags +import GHC.Driver.Session as DynFlags -- compiler/basicTypes import SrcLoc diff --git a/compiler/parser/Parser.y b/compiler/parser/Parser.y index 8cb9a96df1..73e3c52851 100644 --- a/compiler/parser/Parser.y +++ b/compiler/parser/Parser.y @@ -48,10 +48,10 @@ import qualified Prelude import GHC.Hs -- compiler/main -import DriverPhases ( HscSource(..) ) -import HscTypes ( IsBootInterface, WarningTxt(..) ) -import DynFlags -import BkpSyn +import GHC.Driver.Phases ( HscSource(..) ) +import GHC.Driver.Types ( IsBootInterface, WarningTxt(..) ) +import GHC.Driver.Session +import GHC.Driver.Backpack.Syntax import UnitInfo -- compiler/utils diff --git a/compiler/parser/RdrHsSyn.hs b/compiler/parser/RdrHsSyn.hs index e8229a9443..8bf18fc928 100644 --- a/compiler/parser/RdrHsSyn.hs +++ b/compiler/parser/RdrHsSyn.hs @@ -130,7 +130,7 @@ import Maybes import Util import ApiAnnotation import Data.List -import DynFlags ( WarningFlag(..), DynFlags ) +import GHC.Driver.Session ( WarningFlag(..), DynFlags ) import ErrUtils ( Messages ) import Control.Monad |