aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * | | Implement footer-stripping logic.Łukasz Hanuszczak2015-08-221-53/+19
| | | |
| * | | Incorporate link stripping to output diffing mechanism.Łukasz Hanuszczak2015-08-221-9/+11
| | | |
| * | | Implement link-stripping logic as simple SYB transformation.Łukasz Hanuszczak2015-08-221-1/+8
| | | |
| * | | Create stub methods for processing test output as XML documents.Łukasz Hanuszczak2015-08-221-3/+17
| | | |
| * | | Make it possible to choose alternative diff tool.Łukasz Hanuszczak2015-08-221-5/+29
| | | |
| * | | Improve code style to match popular guidelines.Łukasz Hanuszczak2015-08-221-7/+7
| | | |
| * | | Implement actual diffing mechanism.Łukasz Hanuszczak2015-08-221-7/+24
| | | |
| * | | Refactor architecture of test runner output checking functions.Łukasz Hanuszczak2015-08-221-19/+33
| | | |
| * | | Incorporate old, ugly functions for comparing output files.Łukasz Hanuszczak2015-08-221-3/+61
| | | |
| * | | Make Haddock standard output redirection be more configurable.Łukasz Hanuszczak2015-08-221-2/+12
| | | |
| * | | Fix bug with modules not being found in global search mode.Łukasz Hanuszczak2015-08-221-2/+8
| | | |
| * | | Setup skeleton of framework for running tests.Łukasz Hanuszczak2015-08-221-1/+43
| | | |
| * | | Fix bug with test runner not producing any output files.Łukasz Hanuszczak2015-08-221-1/+2
| | | |
| * | | Make test runner actually run Haddock executable.Łukasz Hanuszczak2015-08-221-10/+17
| | | |
| * | | Refactor test runner and create stub functions.Łukasz Hanuszczak2015-08-221-4/+19
| | | |
| * | | Extend test runner configuration with Haddock arguments.Łukasz Hanuszczak2015-08-221-3/+45
| | | |
| * | | Make GHC path a test runner command-line argument.Łukasz Hanuszczak2015-08-221-11/+18
| | | |
| * | | Add GHC path to test runner configuration.Łukasz Hanuszczak2015-08-221-28/+40
| | | |
| * | | Add support for executing Haddock process in test runner.Łukasz Hanuszczak2015-08-221-0/+53
| | | |
| * | | Improve output of test runner error messages.Łukasz Hanuszczak2015-08-221-2/+3
| | | |
| * | | Add support for providing optional arguments for test runner.Łukasz Hanuszczak2015-08-221-7/+62
| | | |
| * | | Set default behaviour if no arguments given.Łukasz Hanuszczak2015-08-221-2/+12
| | | |
| * | | Create script file for new HTML test runner.Łukasz Hanuszczak2015-08-221-0/+28
| |/ /
* | | Fix HyperlinkerBen Gamari2015-12-161-1/+1
| | | | | | | | | | | | GHC.con_names is now GHC.getConNames
* | | Merge remote-tracking branch 'origin/ghc-head' into HEADBen Gamari2015-12-160-0/+0
|\ \ \
| * | | Fix fallout from wildcards refactoringBen Gamari2015-12-164-9/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The wildcard refactoring was introduced a new type of signature, `ClassOpSig`, which is carried by typeclasses. The original patch adapting Haddock for this change missed a few places where this constructor needed to be handled, resulting in no class methods in documentation produced by Haddock. Additionally, this moves and renames the `isVanillaLSig` helper from GHC's HsBinds module into GhcUtils, since it is only used by Haddock.
| * | | Types: Add Outputable[Bndr] DocName instancesBen Gamari2015-12-161-0/+8
| | | |
| * | | Update for D1200Ben Gamari2015-12-154-4/+8
| | | |
| * | | Update for type=kindsRichard Eisenberg2015-12-117-46/+60
| | | |
| * | | Placeholder for record style GADT declarationAlan Zimmerman2015-12-051-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | A GADT Declaration is now presented as CmmCondBranch :: {..} -> CmmNode O C cml_pred :: CmmExpr cml_true, cml_false :: !Label cml_likely :: Maybe Bool for CmmCondBranch :: { -- conditional branch cml_pred :: CmmExpr, cml_true, cml_false :: ULabel, cml_likely :: Maybe Bool -- likely result of the conditional, -- if known } -> CmmNode O C
| * | | Matching changes for #11028Alan Zimmerman2015-12-058-121/+176
| | | |
| * | | Canonicalise Monad instancesHerbert Valerio Riedel2015-12-053-10/+10
| | | |
| * | | WibbleSimon Peyton Jones2015-11-231-1/+1
| | | |
| * | | merge with origin/ghc-headSimon Peyton Jones2015-11-237-22/+23
| |\ \ \
| | * | | Update to match GHC wip/T11019Alan Zimmerman2015-11-217-26/+27
| | | | |
| * | | | Merge remote-tracking branch 'origin/ghc-head' into wip/spj-wildcard-refactorSimon Peyton Jones2015-11-201-3/+1
| |\| | |
| | * | | Undo msHsFilePath change.Edward Z. Yang2015-11-131-3/+1
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Edward Z. Yang <ezyang@cs.stanford.edu>
| * | | | Wibbles to HaddockSimon Peyton Jones2015-11-181-2/+2
| | | | |
| * | | | Merge with origin/headSimon Peyton Jones2015-11-134-12/+13
| |\| | |
| | * | | Eliminate support for deprecated GADT syntaxBen Gamari2015-11-111-2/+0
| | | | | | | | | | | | | | | | | | | | Follows from GHC D1460.
| | * | | Change for IEThingWithMatthew Pickering2015-11-061-1/+1
| | | | |
| | * | | Matching change GHC #11017 BooleanFormula locatedAlan Zimmerman2015-11-014-8/+11
| | | | |
| * | | | Merge remote-tracking branch 'origin/ghc-head' into wip/spj-wildcard-refactorSimon Peyton Jones2015-10-314-40/+35
| |\| | | | | | | | | | | | | | | | | | | | | | | Conflicts: haddock-api/src/Haddock/Convert.hs
| | * | | Relax upper bound on `base` to allow base-4.9Herbert Valerio Riedel2015-10-313-3/+3
| | | | |
| | * | | Account for Typeable changesBen Gamari2015-10-281-37/+32
| | | | | | | | | | | | | | | | | | | | The treatment of type families changed.
| | * | | Track change to PatSyn.patSynSigSimon Peyton Jones2015-10-271-1/+1
| | | | |
| * | | | More adaption to wildcard-refactorSimon Peyton Jones2015-10-313-81/+85
| | | | |
| * | | | Work on updating Haddock to wip/spj-wildard-recactorSimon Peyton Jones2015-10-303-99/+63
| | | | | | | | | | | | | | | | | | | | Still incomplete
| * | | | Follow changes to HsTYpeSimon Peyton Jones2015-10-275-102/+103
| | | | | | | | | | | | | | | | | | | | Not yet complete (but on a wip/ branch)
| * | | | Track wip/spj-wildcard-refactor on main repoSimon Peyton Jones2015-10-265-61/+80
| |/ / /