aboutsummaryrefslogtreecommitdiff
path: root/haddock-api/src/Haddock/Backends
Commit message (Collapse)AuthorAgeFilesLines
* Abstract Monad for interface creationAlex Biehl2021-01-091-1/+1
| | | | | | | | | | I found that when running as a plugin the lookupName function (which runs in Ghc monad) does not work correctly from the typeCheckResultAction hook. Instead, we abstracted the monad used when creating interfaces, so that access to GHC session specific parts is explicit and so that the TcM can provide their (correct) implementation of lookupName.
* Inline and fix getGADTConTypeGVladislav Zavialov2020-12-291-6/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The getGADTConTypeG used HsRecTy, which is at odds with GHC issue #18782. I noticed that getGADTConTypeG was only used in the Hoogle backend. Interestingly, when handling H98 constructors, Hoogle converts RecCon to PrefixCon (see Haddock.Backends.Hoogle.ppCtor). So I changed getGADTConTypeG to handle RecConGADT in the same manner as PrefixConGADT, and after this simplification moved it into the 'where' clause of ppCtor, to the only place where it is used. The practical effect of this change is as follows. Consider this example: data TestH98 = T98 { bar::Int } data TestGADT where TG :: { foo :: Int } -> TestGADT Before this patch, haddock --hoogle used to produce: T98 :: Int -> TestH98 [TG] :: {foo :: Int} -> TestGADT Notice how the record syntax was discarded in T98 but not TG. With this patch, we always produce signatures without record syntax: T98 :: Int -> TestH98 [TG] :: Int -> TestGADT I suspect this might also be a bugfix, as currently Hoogle doesn't seem to render GADT record constructors properly.
* Enable two warnings (#1245) (#1268)tomjaguarpaw2020-12-192-0/+2
| | | | | | because they will be soon be added to -Wall. See https://gitlab.haskell.org/ghc/ghc/-/issues/15656
* Adapt to HsCoreTy (formerly NewHsTypeX) becoming a type synonymRyan Scott2020-12-162-2/+2
| | | | Needed for !4417, the fix for GHC#15706 and GHC#18914.
* Display linear/multiplicity arrows correctly (#1238)Krzysztof Gogolewski2020-12-163-7/+25
| | | | Previously we were ignoring multiplicity and displayed a %1 -> b as a -> b.
* Revert "Enable two warnings (#1245) (#1268)"Ben Gamari2020-12-152-2/+0
| | | | | | As this does not build on GHC `master`. This reverts commit 7936692badfe38f23ae95b51fb7bd7c2ff7e9bce.
* Enable two warnings (#1245) (#1268)tomjaguarpaw2020-12-102-0/+2
| | | | | because they will be soon be added to -Wall. See https://gitlab.haskell.org/ghc/ghc/-/issues/15656
* Merge pull request #1257 from AndreasPK/wip/andreask/opt_dumpsBen Gamari2020-12-031-1/+1
|\ | | | | Update for changes in GHC's Pretty
| * Update for changes in GHC's PrettyAndreas Klebinger2020-11-241-1/+1
| |
* | DynFlags's unit fields moved to HscEnvSylvain Henry2020-11-301-9/+10
| |
* | Add type arguments to PrefixConCale Gibbard2020-11-253-8/+8
|/
* Adapt to HsOuterTyVarBndrsRyan Scott2020-10-303-82/+139
| | | | | These changes accompany ghc/ghc!4107, which aims to be a fix for #16762.
* Adapt to HsConDecl{H98,GADT}Details splitRyan Scott2020-10-303-30/+34
| | | | Needed for GHC#18844.
* GHC.Driver.Types refactoring (#1242)Sylvain Henry2020-10-262-3/+4
|
* Match GHC, adding IsUnicodeSyntax field to HsFunTy and HsScaledAlan Zimmerman2020-10-191-1/+2
|
* Add whitespace in: map ($ v)Vladislav Zavialov2020-10-151-3/+3
|
* Don't pass the HomeUnitId (#1239)Sylvain Henry2020-10-121-1/+0
|
* Adapt to GHC parser changesSylvain Henry2020-09-301-1/+2
|
* Update for parser (#1234)Sylvain Henry2020-09-292-5/+3
|
* Updates for the new linear types syntax: a %p -> bVladislav Zavialov2020-09-261-0/+1
|
* Match GHC for #18639, remove GENERATED pragmaAlan Zimmerman2020-09-071-2/+0
|
* Remove Ord FastString instanceSylvain Henry2020-08-171-2/+2
|
* Fix after HomeUnitSylvain Henry2020-08-121-1/+2
|
* Fix after Outputable refactoringSylvain Henry2020-08-054-6/+10
|
* Update for modular ping pongZubin Duggal2020-07-233-6/+2
|
* Sync with GHC removing {-# CORE #-} pragmaKrzysztof Gogolewski2020-07-121-2/+0
| | | | See ghc ticket #18048
* Handle LexicalNegation's ITprefixminusVladislav Zavialov2020-06-281-0/+1
|
* Adapt Haddock for QualifiedDoMatthías Páll Gissurarson2020-06-261-2/+2
|
* Adapt Haddock to LinearTypesKrzysztof Gogolewski2020-06-175-26/+32
| | | | See ghc/ghc!852.
* Use HsForAllTelescope (GHC#18235)Ryan Scott2020-06-133-41/+45
|
* Merge pull request #1202 from hsyl20/wip/hsyl20/unitid-iiBen Gamari2020-06-092-8/+9
|\ | | | | Fix after unit refactoring
| * Fix after unit refactoringSylvain Henry2020-06-082-8/+9
| |
* | Changes for GHC#18191Ryan Scott2020-06-052-2/+2
|/ | | | See https://gitlab.haskell.org/ghc/ghc/-/merge_requests/3337.
* update for hiefile-typeclass-infoZubin Duggal2020-05-241-14/+20
|
* Explicit Specificity Support for HaddockGert-Jan Bottu2020-05-203-19/+52
|
* Atomic update of NameCache in readHieFileZubin Duggal2020-05-041-3/+5
|
* Fix for GHC.Unit.* modulesSylvain Henry2020-04-273-3/+3
|
* UnitId has been renamed into UnitSylvain Henry2020-04-272-2/+2
|
* Module structureSylvain Henry2020-04-249-17/+16
|
* Module renamingSylvain Henry2020-04-102-4/+4
|
* Make NoExtCon fields strictRyan Scott2020-04-073-22/+0
| | | | | These changes are a part of a fix for [GHC#17992](https://gitlab.haskell.org/ghc/ghc/issues/17992).
* Modules: TypesSylvain Henry2020-03-2012-29/+29
|
* Modules: Core (#13009)Sylvain Henry2020-03-021-1/+1
|
* Ignore the BufLoc/BufSpan added in GHC's !2516Vladislav Zavialov2020-02-283-9/+11
|
* Modules: Driver (#13009)Sylvain Henry2020-02-192-2/+2
|
* No MonadFail/Alternative for PVladislav Zavialov2020-02-161-26/+28
|
* Changes for GHC#17566Ryan Scott2020-01-253-4/+4
| | | | See https://gitlab.haskell.org/ghc/ghc/merge_requests/2469
* Fix after Iface modules renamingSylvain Henry2020-01-023-7/+7
|
* Update Hyperlinker.Parser.classify to use ITdollarVladislav Zavialov2019-11-241-4/+2
|
* Refactor for OutputableBndrId changesSebastian Graf2019-10-251-2/+2
|