From f1f94f2f634fb065f69ca2cc87a4a54f4e3a39ed Mon Sep 17 00:00:00 2001 From: Mateusz Kowalczyk Date: Fri, 30 Aug 2013 06:05:51 +0100 Subject: Per-module extension flags and language listing. Any extensions that are not enabled by a used language (Haskell2010 &c) will be shown. Furthermore, any implicitly enabled are also going to be shown. While we could eliminate this either by using the GHC API or a dirty hack, I opted not to: if a user doesn't want the implied flags to show, they are recommended to use enable extensions more carefully or individually. Perhaps this will encourage users to not enable the most powerful flags needlessly. Enabled with show-extensions. Conflicts: src/Haddock/InterfaceFile.hs --- html-test/ref/Extensions.html | 89 +++++++++++++++++++++++++++++++++++++++++++ html-test/src/Extensions.hs | 7 ++++ 2 files changed, 96 insertions(+) create mode 100644 html-test/ref/Extensions.html create mode 100644 html-test/src/Extensions.hs (limited to 'html-test') diff --git a/html-test/ref/Extensions.html b/html-test/ref/Extensions.html new file mode 100644 index 00000000..82fd732f --- /dev/null +++ b/html-test/ref/Extensions.html @@ -0,0 +1,89 @@ + +Extensions

 

Safe HaskellSafe-Inferred
LanguageHaskell2010
ExtensionsTypeHoles

Extensions

Synopsis

Documentation

foobar :: t

Bar

diff --git a/html-test/src/Extensions.hs b/html-test/src/Extensions.hs new file mode 100644 index 00000000..6b3535c9 --- /dev/null +++ b/html-test/src/Extensions.hs @@ -0,0 +1,7 @@ +{-# LANGUAGE Haskell2010, TypeHoles, MonomorphismRestriction #-} +{-# OPTIONS_HADDOCK show-extensions #-} +module Extensions where + +-- | Bar +foobar :: t +foobar = undefined -- cgit v1.2.3