Add support for deprecating exported items (proposal #134)
This is an implementation of the deprecated exports proposal #134. The proposal introduces an ability to introduce warnings to exports. This allows for deprecating a name only when it is exported from a specific module, rather than always depreacting its usage. In this example: module A ({-# DEPRECATED "do not use" #-} x) where x = undefined --- module B where import A(x) `x` will emit a warning when it is explicitly imported. Like the declaration warnings, export warnings are first accumulated within the `Warnings` struct, then passed into the ModIface, from which they are then looked up and warned about in the importing module in the `lookup_ie` helpers of the `filterImports` function (for the explicitly imported names) and in the `addUsedGRE(s)` functions where they warn about regular usages of the imported name. In terms of the AST information, the custom warning is stored in the extension field of the variants of the `IE` type (see Trees that Grow for more information). The commit includes a bump to the haddock submodule added in MR #28 Signed-off-by:Bartłomiej Cieślar <bcieslar2001@gmail.com>
Showing
- compiler/GHC.hs 3 additions, 3 deletionscompiler/GHC.hs
- compiler/GHC/Driver/Flags.hs 4 additions, 1 deletioncompiler/GHC/Driver/Flags.hs
- compiler/GHC/Driver/Session.hs 2 additions, 1 deletioncompiler/GHC/Driver/Session.hs
- compiler/GHC/Hs/ImpExp.hs 58 additions, 17 deletionscompiler/GHC/Hs/ImpExp.hs
- compiler/GHC/Iface/Make.hs 4 additions, 2 deletionscompiler/GHC/Iface/Make.hs
- compiler/GHC/Iface/Recomp.hs 19 additions, 17 deletionscompiler/GHC/Iface/Recomp.hs
- compiler/GHC/Iface/Syntax.hs 14 additions, 14 deletionscompiler/GHC/Iface/Syntax.hs
- compiler/GHC/Parser.y 47 additions, 7 deletionscompiler/GHC/Parser.y
- compiler/GHC/Parser/PostProcess.hs 11 additions, 8 deletionscompiler/GHC/Parser/PostProcess.hs
- compiler/GHC/Rename/Env.hs 83 additions, 41 deletionscompiler/GHC/Rename/Env.hs
- compiler/GHC/Rename/Module.hs 5 additions, 5 deletionscompiler/GHC/Rename/Module.hs
- compiler/GHC/Rename/Names.hs 55 additions, 24 deletionscompiler/GHC/Rename/Names.hs
- compiler/GHC/Rename/Pat.hs 1 addition, 1 deletioncompiler/GHC/Rename/Pat.hs
- compiler/GHC/Runtime/Loader.hs 1 addition, 1 deletioncompiler/GHC/Runtime/Loader.hs
- compiler/GHC/Tc/Errors/Ppr.hs 21 additions, 7 deletionscompiler/GHC/Tc/Errors/Ppr.hs
- compiler/GHC/Tc/Errors/Types.hs 23 additions, 1 deletioncompiler/GHC/Tc/Errors/Types.hs
- compiler/GHC/Tc/Gen/Export.hs 275 additions, 78 deletionscompiler/GHC/Tc/Gen/Export.hs
- compiler/GHC/Tc/Gen/Expr.hs 2 additions, 2 deletionscompiler/GHC/Tc/Gen/Expr.hs
- compiler/GHC/Tc/Instance/Class.hs 2 additions, 2 deletionscompiler/GHC/Tc/Instance/Class.hs
- compiler/GHC/Tc/Module.hs 1 addition, 1 deletioncompiler/GHC/Tc/Module.hs
Loading
Please register or sign in to comment