diff options
| author | Vladislav Zavialov <vlad.z.4096@gmail.com> | 2018-06-07 15:45:22 +0300 | 
|---|---|---|
| committer | Ben Gamari <ben@smart-cactus.org> | 2018-06-14 17:06:21 -0400 | 
| commit | 97c6cb949ffe707865b9c46016f97b441d114e45 (patch) | |
| tree | a81623757978b726043bb42cc55e4000d41bcd13 /haddock-api/src/Haddock/Interface/Rename.hs | |
| parent | 5b25163bad9c28040fdc61555659b4b4b6168032 (diff) | |
Handle -XStarIsType
Diffstat (limited to 'haddock-api/src/Haddock/Interface/Rename.hs')
| -rw-r--r-- | haddock-api/src/Haddock/Interface/Rename.hs | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/haddock-api/src/Haddock/Interface/Rename.hs b/haddock-api/src/Haddock/Interface/Rename.hs index c07f8300..86d9fd6a 100644 --- a/haddock-api/src/Haddock/Interface/Rename.hs +++ b/haddock-api/src/Haddock/Interface/Rename.hs @@ -233,6 +233,8 @@ renameType t = case t of    HsTyVar _ ip (L l n) -> return . HsTyVar NoExt ip . L l =<< rename n    HsBangTy _ b ltype -> return . HsBangTy NoExt b =<< renameLType ltype +  HsStarTy _ isUni -> return (HsStarTy NoExt isUni) +    HsAppTy _ a b -> do      a' <- renameLType a      b' <- renameLType b @@ -276,7 +278,6 @@ renameType t = case t of    HsExplicitTupleTy a b   -> HsExplicitTupleTy a <$> mapM renameLType b    HsSpliceTy _ s          -> renameHsSpliceTy s    HsWildCardTy a          -> HsWildCardTy <$> renameWildCardInfo a -  HsAppsTy _ _            -> error "renameType: HsAppsTy"  -- | Rename splices, but _only_ those that turn out to be for types.  -- I think this is actually safe for our possible inputs: | 
