diff options
author | Sylvain Henry <sylvain@haskus.fr> | 2019-09-11 21:19:39 +0200 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-09-20 05:14:34 -0400 |
commit | 5119296440e6846c553c72b8a93afc5ecfa576f0 (patch) | |
tree | ff508560a4996afffb24bf3af5dfa9c56a7e5c77 /testsuite/tests/plugins | |
parent | 4853d962289db1b32886ec73e824cd37c9c5c002 (diff) | |
download | haskell-5119296440e6846c553c72b8a93afc5ecfa576f0.tar.gz |
Module hierarchy: Hs (#13009)
Add GHC.Hs module hierarchy replacing hsSyn.
Metric Increase:
haddock.compiler
Diffstat (limited to 'testsuite/tests/plugins')
-rw-r--r-- | testsuite/tests/plugins/simple-plugin/Simple/RemovePlugin.hs | 8 | ||||
-rw-r--r-- | testsuite/tests/plugins/simple-plugin/Simple/SourcePlugin.hs | 10 | ||||
-rw-r--r-- | testsuite/tests/plugins/static-plugins.hs | 10 |
3 files changed, 14 insertions, 14 deletions
diff --git a/testsuite/tests/plugins/simple-plugin/Simple/RemovePlugin.hs b/testsuite/tests/plugins/simple-plugin/Simple/RemovePlugin.hs index 2d14eeaf85..fce8b7d136 100644 --- a/testsuite/tests/plugins/simple-plugin/Simple/RemovePlugin.hs +++ b/testsuite/tests/plugins/simple-plugin/Simple/RemovePlugin.hs @@ -7,12 +7,12 @@ import Plugins import Bag import HscTypes import TcRnTypes -import HsExtension -import HsExpr +import GHC.Hs.Extension +import GHC.Hs.Expr import Outputable import SrcLoc -import HsSyn -import HsBinds +import GHC.Hs +import GHC.Hs.Binds import OccName import RdrName import Name diff --git a/testsuite/tests/plugins/simple-plugin/Simple/SourcePlugin.hs b/testsuite/tests/plugins/simple-plugin/Simple/SourcePlugin.hs index b9bdaeb37a..cb5fc70550 100644 --- a/testsuite/tests/plugins/simple-plugin/Simple/SourcePlugin.hs +++ b/testsuite/tests/plugins/simple-plugin/Simple/SourcePlugin.hs @@ -6,13 +6,13 @@ import Data.Maybe (isJust) import Plugins import HscTypes import TcRnTypes -import HsExtension +import GHC.Hs.Extension import Avail -import HsExpr +import GHC.Hs.Expr import Outputable -import HsImpExp -import HsDecls -import HsDoc +import GHC.Hs.ImpExp +import GHC.Hs.Decls +import GHC.Hs.Doc plugin :: Plugin plugin = defaultPlugin { parsedResultAction = parsedPlugin diff --git a/testsuite/tests/plugins/static-plugins.hs b/testsuite/tests/plugins/static-plugins.hs index 36e18b86b5..3dd6aa2e6d 100644 --- a/testsuite/tests/plugins/static-plugins.hs +++ b/testsuite/tests/plugins/static-plugins.hs @@ -6,11 +6,11 @@ import DynFlags (getDynFlags, parseDynamicFlagsCmdLine, defaultFatalMessager, defaultFlushOut) import GHC import GHC.Fingerprint.Type -import HsDecls -import HsDoc -import HsExpr -import HsExtension -import HsImpExp +import GHC.Hs.Decls +import GHC.Hs.Doc +import GHC.Hs.Expr +import GHC.Hs.Extension +import GHC.Hs.ImpExp import HscTypes import Outputable import Plugins |