aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* 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
| |/
| * Roughly fix up haddock for DuplicateRecordFields changesAdam Gundry2015-10-169-26/+45
| | | | | | | | | | This compiles, but will probably need more work to produce good documentation when the DuplicateRecordFields extension is used.
| * s/PackageKey/UnitId/g and s/packageKey/unitId/gEdward Z. Yang2015-10-118-22/+22
| | | | | | | | Signed-off-by: Edward Z. Yang <ezyang@cs.stanford.edu>
| * Merge pull request #448 from Mistuke/fix-silent-death-of-runInteractiveBen Gamari2015-10-031-5/+2
| |\ | | | | | | Remove PhaseFailed
| | * Create Process: removed PhaseFailedTamar Christina2015-09-271-5/+2
| |/
| * Track msHsFilePath change.Edward Z. Yang2015-09-211-1/+3
| | | | | | | | Signed-off-by: Edward Z. Yang <ezyang@cs.stanford.edu>
| * React to refactoring CoAxiom branch lists.Richard Eisenberg2015-09-211-1/+1
| |
| * Follow changes from #6018Jan Stolarek2015-09-033-21/+84
| |
| * Merge pull request #443 from bgamari/ghc-headBen Gamari2015-09-021-3/+2
| |\ | | | | | | account for changes to ipClass
| | * account for changes to ipClassEric Seidel2015-08-301-3/+2
| |/
| * Follow changes in GHC build systemThomas Miedema2015-08-151-2/+2
| |
| * Merge pull request #433 from adamse/split-hsbangBen Gamari2015-08-103-18/+10
| |\ | | | | | | HsBang is split into HsSrcBang and HsImplBang
| | * HsBang is split into HsSrcBang and HsImplBangAdam Sandberg Eriksson2015-08-093-18/+10
| |/ | | | | | | | | With recent changes in GHC handling of strictness annotations in Haddock is simplified.
| * Replace (SourceText,FastString) with WithSourceText data typeAlan Zimmerman2015-07-311-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | Phab:D907 introduced SourceText for a number of data types, by replacing FastString with (SourceText,FastString). Since this has an Outputable instance, no warnings are generated when ppr is called on it, but unexpected output is generated. See Phab:D1096 for an example of this. Replace the (SourceText,FastString) tuples with a new data type data WithSourceText = WithSourceText SourceText FastString Trac ticket: #10692
| * Merge pull request #422 from adamse/adamse-D1033Ben Gamari2015-07-273-9/+14
| |\ | | | | | | Merge for GHC D1033
| | * StrictData: changes in HsBang typeAdam Sandberg Eriksson2015-07-083-14/+14
| | |
| | * StrictData: print correct strictness marksAdam Sandberg Eriksson2015-07-073-9/+14
| |/
| * Update after wild card renaming refactoring in D613Thomas Winant2015-06-084-25/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Summary: * Move `Post*` type instances to `Haddock.Types` as other modules than `Haddock.Interface.Rename` will rely on these type instances. * Update after wild card renaming refactoring in D613. Reviewers: simonpj, austin Reviewed By: austin Differential Revision: https://phabricator.haskell.org/D954 GHC Trac Issues: #10098
| * ApiAnnotations : strings in warnings do not return SourceTextAlan Zimmerman2015-05-251-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The strings used in a WARNING pragma are captured via strings :: { Located ([AddAnn],[Located FastString]) } : STRING { sL1 $1 ([],[L (gl $1) (getSTRING $1)]) } .. The STRING token has a method getSTRINGs that returns the original source text for a string. A warning of the form {-# WARNING Logic , mkSolver , mkSimpleSolver , mkSolverForLogic , solverSetParams , solverPush , solverPop , solverReset , solverGetNumScopes , solverAssertCnstr , solverAssertAndTrack , solverCheck , solverCheckAndGetModel , solverGetReasonUnknown "New Z3 API support is still incomplete and fragile: \ \you may experience segmentation faults!" #-} returns the concatenated warning string rather than the original source.
| * Track the new location of setRdrNameSpaceSimon Peyton Jones2015-05-131-1/+2
| |
| * Change ModuleTree Node to carry PackageKey and SourcePackageId to resolve #385Murray Campbell2015-05-112-21/+24
| | | | | | | | Signed-off-by: Austin Seipp <aseipp@pobox.com>
| * Track API changes to support empty closed type familesAdam Gundry2015-05-043-9/+13
| |
| * Track change in API of TyConSimon Peyton Jones2015-05-011-2/+3
| |
| * --package-name and --package-version flagsMateusz Kowalczyk2015-03-153-25/+53
| | | | | | | | | | | | | | | | Used for --hoogle amongst other things. Now we need to teach cabal to use it. The situation is still a bit sub-par because if the flags aren't passed in, the crash will occur. Closes #353. (cherry picked from commit 8e06728afb0784128ab2df0be7a5d7a191d30ff4)
| * Track changes in HsSyn for quasi-quotesSimon Peyton Jones2015-02-103-6/+0
| |