[commit: haddock] 2.17.3.1-spanfix, alexbiehl-patch-1, ghc-8.0, ghc-8.0-facebook, ghc-head, ghc-head1, haddock-quick, headdock-library-1.4.5, ie_avails, issue-303, issue-475, master, pr-filter-maps, pr/cabal-desc, travis, v2.17, v2.17.3, v2.18, wip-located-module-as, wip/D2418, wip/T11080-open-data-kinds, wip/T11258, wip/T11430, wip/T12105, wip/T12105-2, wip/T12942, wip/T13163, wip/T14529, wip/T3384, wip/embelleshed-rdr, wip/new-tree-one-param, wip/rae, wip/remove-frames, wip/remove-frames1, wip/revert-ttg-2017-11-20, wip/ttg-2017-10-13, wip/ttg-2017-10-31, wip/ttg-2017-11-06, wip/ttg2-2017-11-10, wip/ttg3-2017-11-12, wip/ttg4-constraints-2017-11-13, wip/ttg6-unrevert-2017-11-22: Eliminate support for deprecated GADT syntax (064a7df)

git at git.haskell.org git at git.haskell.org
Tue Nov 28 11:41:55 UTC 2017


Repository : ssh://git@git.haskell.org/haddock

On branches: 2.17.3.1-spanfix,alexbiehl-patch-1,ghc-8.0,ghc-8.0-facebook,ghc-head,ghc-head1,haddock-quick,headdock-library-1.4.5,ie_avails,issue-303,issue-475,master,pr-filter-maps,pr/cabal-desc,travis,v2.17,v2.17.3,v2.18,wip-located-module-as,wip/D2418,wip/T11080-open-data-kinds,wip/T11258,wip/T11430,wip/T12105,wip/T12105-2,wip/T12942,wip/T13163,wip/T14529,wip/T3384,wip/embelleshed-rdr,wip/new-tree-one-param,wip/rae,wip/remove-frames,wip/remove-frames1,wip/revert-ttg-2017-11-20,wip/ttg-2017-10-13,wip/ttg-2017-10-31,wip/ttg-2017-11-06,wip/ttg2-2017-11-10,wip/ttg3-2017-11-12,wip/ttg4-constraints-2017-11-13,wip/ttg6-unrevert-2017-11-22
Link       : http://git.haskell.org/haddock.git/commitdiff/064a7dfb98c197cd04f596aa7593b56cc93b63b6

>---------------------------------------------------------------

commit 064a7dfb98c197cd04f596aa7593b56cc93b63b6
Author: Ben Gamari <ben at smart-cactus.org>
Date:   Wed Nov 11 11:35:51 2015 +0100

    Eliminate support for deprecated GADT syntax
    
    Follows from GHC D1460.


>---------------------------------------------------------------

064a7dfb98c197cd04f596aa7593b56cc93b63b6
 haddock-api/src/Haddock/Convert.hs | 6 ++----
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/haddock-api/src/Haddock/Convert.hs b/haddock-api/src/Haddock/Convert.hs
index b829a5f..ddf8f6b 100644
--- a/haddock-api/src/Haddock/Convert.hs
+++ b/haddock-api/src/Haddock/Convert.hs
@@ -307,14 +307,12 @@ synifyDataCon use_gadt_syntax dc =
  in hs_arg_tys >>=
       \hat -> return $ noLoc $
               ConDecl { con_names = [name]
-                      , con_explicit = False    -- we don't know nor care
+                      , con_explicit = Implicit   -- we don't know nor care
                       , con_qvars = qvars
                       , con_cxt   = ctx
                       , con_details =  hat
                       , con_res = hs_res_ty
-                      , con_doc =  Nothing
-                -- we don't want any "deprecated GADT syntax" warnings!
-                      , con_old_rec = False }
+                      , con_doc =  Nothing }
 
 synifyName :: NamedThing n => n -> Located Name
 synifyName = noLoc . getName



More information about the ghc-commits mailing list