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 /docs/users_guide/extending_ghc.rst | |
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 'docs/users_guide/extending_ghc.rst')
-rw-r--r-- | docs/users_guide/extending_ghc.rst | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/users_guide/extending_ghc.rst b/docs/users_guide/extending_ghc.rst index 6b6a1ed3cb..7035e02465 100644 --- a/docs/users_guide/extending_ghc.rst +++ b/docs/users_guide/extending_ghc.rst @@ -752,13 +752,13 @@ displayed. import Plugins import HscTypes import TcRnTypes - import HsExtension - import HsDecls - import HsExpr - import HsImpExp + import GHC.Hs.Extension + import GHC.Hs.Decls + import GHC.Hs.Expr + import GHC.Hs.ImpExp import Avail import Outputable - import HsDoc + import GHC.Hs.Doc plugin :: Plugin plugin = defaultPlugin |