Skip to content
Snippets Groups Projects
  1. Nov 07, 2018
    • Alec Theriault's avatar
      Fix issues around plus/minus · 2a46036e
      Alec Theriault authored
        * swap the minimize unicode to something more intuitive
        * use new unicode expander/collapser for instance lists
        * address some alignment issues in the "index" page
      2a46036e
  2. Oct 18, 2018
  3. Jul 20, 2018
    • Simon Jakobi's avatar
      Update the ghc-8.6 branch (#889) · ab9cb915
      Simon Jakobi authored and Alex Biehl's avatar Alex Biehl committed
      * Revert "Bump GHC version to 8.6"
      
      This was applied to the wrong branch; there's now a `ghc-8.6` branch;
      ghc-head is always supposed to point to GHC HEAD, i.e. an odd major version.
      The next version bump to `ghc-head` is supposed to go from e.g. 8.5 to 8.7
      
      This reverts commit 5e3cf5d8.
      
      * README updates (#856)
      
      * README: Remove mentions of master branch
      
      * README: Add instructions for using html-test
      
      * README: Change command to run _all_ the testsuites
      
      * README: Add project overview section
      
      (cherry picked from commit 61d6f935)
      
      * Export more fixities for Hoogle (#871)
      
      This exports fixities for more things, including class methods and
      type-level operators.
      
      (cherry picked from commit 88316b97)
      
      * Avoid line breaks due to line length in Hoogle (#868)
      
      * Avoid line breaks due to line length in Hoogle
      
      Hoogle operates in a line-oriented fashion, so we should avoid ever
      breaking due to long lines.
      
      One way of doing this non-intrusively is to modify the 'DynFlags' that
      are threaded through the 'Hoogle' module (note this is anyways only
      passed through for use in the various 'showSDoc' functions).
      
      * Amend test case
      
      (cherry picked from commit 657b1b3d)
      
      * tyThingToLHsDecl: Preserve type synonyms that contain a forall (#880)
      
      * tyThingToLHsDecls: Preserve type synonyms that contain a forall
      
      Fixes #879.
      
      * Add Note [Invariant: Never expand type synonyms]
      
      * Clarify Note [Invariant: Never expand type synonyms]
      
      (cherry picked from commit c3eb3f05)
      
      * Fix HEAD html-test (#860)
      
      * Update tests for 'StarIsType'
      
      * Accept tests
      
      * Revert "Update tests for 'StarIsType'"
      
      This reverts commit 7f0c01383bbba6dc5af554ee82988d2cf44e407a.
      
      * Refactor handling of parens in types (#874)
      
      * Fix type parenthesization in Hoogle backend
      
      Ported the logic in the HTML and LaTeX backends for adding in parens
      into something top-level in 'GhcUtil'. Calling that from the Hoogle
      backend fixes #873.
      
      * Remove parenthesizing logic from LaTeX and XHTML backends
      
      Now, the only times that parenthesis in types are added in any backend
      is through the explicit 'HsParTy' constructor. Precedence is also
      represented as its own datatype.
      
      * List out cases explicitly vs. catch-all
      
      * Fix printing of parens for QuantifiedConstraints
      
      The priority of printing 'forall' types was just one too high.
      
      Fixes #877.
      
      * Accept HTML output for quantified contexts test
      
      * Preserve docs on type family instances (#867)
      
      * Preserve docs on type family instances
      
      The only problem was that the instance location was slightly off
      for type family instances.
      
      * Accept output
      
      (cherry picked from commit 133e9c2c)
      
      * Fix broken instance source links (#869)
      
      The problem manifests itself in instances that are defined in
      modules other than the module where the class is defined. The fix
      is just to thread through the 'Module' of the instance further
      along.
      
      Since orphan instances appear to already have been working, I didn't
      do anything there.
      
      (cherry picked from commit 2de7c2ac)
      
      * Add some more unicode related tests (#872)
      
      This has been fixed for sure ever since we switched from attoparsec to
      parsec. Parts of it may have been working before that, but there was a
      point where this would have failed (see #191).
      
      A regression test never hurt anyone. :)
      
      (cherry picked from commit 5ec7715d)
      
      * Misc tests (#858)
      
      * More tests
      
      * spliced types
      * constructor/pattern argument docs
      * strictness marks on fields with argument docs
      
      * latex test cases need seperate directory
      
      * Accept tests
      
      * Additional tests for the identifier parser (#816)
      
      * Add tests for the identifier parser
      
      * docs: Clarify how to delimit identifiers
      
      (cherry picked from commit 0861affe)
      ab9cb915
    • Alec Theriault's avatar
      Fix broken instance source links (#869) · 2de7c2ac
      Alec Theriault authored and Alex Biehl's avatar Alex Biehl committed
      The problem manifests itself in instances that are defined in
      modules other than the module where the class is defined. The fix
      is just to thread through the 'Module' of the instance further
      along.
      
      Since orphan instances appear to already have been working, I didn't
      do anything there.
      2de7c2ac
  4. Mar 27, 2018
    • Alec Theriault's avatar
      @since includes package name (#749) · 978dbc85
      Alec Theriault authored and Alex Biehl's avatar Alex Biehl committed
      * Metadoc stores a package name
      
      This means that '@since' annotations can be package aware.
      
      * Get the package name the right way
      
      This should extract the package name for `@since` annotations the
      right way. I had to move `modulePackageInfo` around to do this and,
      in the process, I took the liberty to update it.
      
      Since it appears that finding the package name is something that can
      fail, I added a warning for this case.
      
      * Silence warnings
      
      * Hide package for local 'since' annotations
      
      As discussed, this is still the usual case (and we should avoid being
      noisy for it).
      
      Although this commit is large, it is basically only about threading a
      'Maybe Package' from 'Haddock.render' all the way to
      'Haddock.Backends.Xhtml.DocMarkup.renderMeta'.
      
      * Bump binary interface version
      
      * Add a '--since-qual' option
      
      This controls when to qualify since annotations with the package they
      come from. The default is always, but I've left an 'external' variant
      where only those annotations coming from outside of the current
      package are qualified.
      
      * Make ParserSpec work
      
      * Make Fixtures work
      
      * Use package name even if package version is not available
      
      The @since stuff needs only the package name passed in, so it
      makes sense to not be forced to pass in a version too.
      978dbc85
  5. Mar 21, 2018
    • Alec Theriault's avatar
      Show where instances are defined (#748) · b7a74c67
      Alec Theriault authored and Alex Biehl's avatar Alex Biehl committed
      * Indicate source module of instances
      
      Above instance, we now also display a link to the module where the
      instance was defined. This is sometimes helpful in figuring out
      what to import.
      
      * Source module for type/data families too
      
      * Remove parens
      
      * Accept tests
      b7a74c67
  6. Oct 09, 2017
    • TimBaumann's avatar
      Use <details> element for collapsibles (#690) · e41c1cbe
      TimBaumann authored and Alex Biehl's avatar Alex Biehl committed
      * Remove unnecessary call to 'collapseSection'
      
      The call is unnecessary since there is no corresponding toggle for hiding the
      section of orphan instances.
      
      * Use <details> for collapsibles
      
      This makes them work even when JS is disabled. Closes #560.
      e41c1cbe
  7. Jun 09, 2017
    • Christiaan Baaij's avatar
      Haddock support for bundled pattern synonyms (#627) · 87c551fc
      Christiaan Baaij authored and Alex Biehl's avatar Alex Biehl committed
      * Haddock support for bundled pattern synonyms
      
      * Add fixities to bundled pattern synonyms
      
      * Add bundled pattern synonyms to the synopsis
      
      * Store bundled pattern fixities in expItemFixities
      
      * Add test for bundled pattern synonyms
      
      * Stop threading fixities
      
      * Include bundled pattern synonyms for re-exported data types
      
      Sadly, fixity information isn't found for re-exported data types
      
      * Support for pattern synonyms
      
      * Modify tests after #631
      
      * Test some reexport variations
      
      * Also lookup bundled pattern synonyms from `InstalledInterface`s
      
      * Check isExported for bundled pattern synonyms
      
      * Pattern synonym is exported check
      
      * Always look for pattern synonyms in the current module
      
      Another overlooked cornercase
      
      * Account for types named twice in export lists
      
      Also introduce a fast function for nubbing on a `Name` and use it
      throughout the code base.
      
      * correct fixities for reexported pattern synonyms
      
      * Fuse concatMap and map
      
      * Remove obsolete import
      
      * Add pattern synonyms to visible exports
      
      * Fix test
      
      * Remove corner case
      87c551fc
  8. Apr 16, 2016
  9. Feb 12, 2016
  10. Feb 11, 2016
  11. Feb 08, 2016
    • Rufflewind's avatar
      Move the permalinks to "#" on the right side · 1b6bcd62
      Rufflewind authored and Ben Gamari's avatar Ben Gamari committed
      Since pull request #407, the identifiers have been permalinked to
      themselves, but this makes it difficult to copy the identifier by
      double-clicking.  To work around this usability problem, the permalinks
      are now placed on the far right adjacent to "Source", indicated by "#".
      
      Also, 'namedAnchor' now uses 'id' instead of 'name' (which is obsolete).
      1b6bcd62
  12. Dec 14, 2015
  13. Oct 11, 2015
  14. Sep 28, 2015
  15. Sep 27, 2015
  16. Aug 21, 2015
  17. Aug 02, 2015
  18. Jun 12, 2015
  19. Jan 22, 2015
  20. Dec 12, 2014
  21. Dec 10, 2014
    • Mateusz Kowalczyk's avatar
      Allow the parser to spit out meta-info · 12a066d9
      Mateusz Kowalczyk authored
      Currently we only use it only for ‘since’ annotations but with these
      patches it should be fairly simple to add new attributes if we wish to.
      
      Closes #26. It seems to work fine but due to 7.10 rush I don't have the
      chance to do more exhaustive testing right now. The way the meta is
      output (emphasis at the end of the whole comment) is fairly arbitrary
      and subject to bikeshedding.
      
      Note that this makes test for Bug310 fail due to interface version bump:
      it can't find the docs for base with this interface version so it fails.
      There is not much we can do to help this because it tests for ’built-in’
      identifier, not something we can provide ourselves.
      12a066d9
  22. Oct 29, 2014
  23. Aug 23, 2014
  24. Aug 14, 2014
  25. Jul 21, 2014
  26. Mar 15, 2014
    • Niklas Haas's avatar
      Fix issue #281 · 82ab2c09
      Niklas Haas authored and Mateusz Kowalczyk's avatar Mateusz Kowalczyk committed
      This is a regression from the data family instances change. Data
      instances are now distinguished from regular lists by usage of the new
      class "inst", and the style has been updated to only apply to those.
      
      I've also updated the appropriate test case to test this a bit better,
      including GADT instances with GADT-style records.
      82ab2c09
  27. Mar 13, 2014
    • Niklas Haas's avatar
      Display minimal complete definitions for type classes · eaf0a0b5
      Niklas Haas authored and Mateusz Kowalczyk's avatar Mateusz Kowalczyk committed
      This corresponds to the new {-# MINIMAL #-} pragma present in GHC 7.8+.
      I also cleaned up some of the places in which ExportDecl is used to make
      adding fields easier in the future.
      
      Lots of test cases have been updated since they now render with
      minimality information.
      eaf0a0b5
Loading