Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add LANGUAGE pragmas to source files | David Waern | 2008-05-01 | 1 | -0/+3 |
| | |||||
* | Add a flag for turning off all warnings | David Waern | 2008-04-11 | 1 | -6/+6 |
| | |||||
* | Change the representation of DocNames | David Waern | 2008-02-09 | 2 | -7/+8 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Ross Paterson reported a bug where links would point to the defining module instead of the "best" module for an identifier (e.g Int pointing to GHC.Base instead of Data.Int). This patch fixes this problem by refactoring the way renamed names are represented. Instead of representing them by: > data DocName = Link Name | NoLink Name they are now represented as such: > data DocName = Documented Name Module | Undocumented Name and the the link-env looks like this: > type LinkEnv = Map Name Module There are several reasons for this. First of all, the bug was caused by changing the module part of Names during the renaming process, without changing the Unique field. This caused names to be overwritten during the loading of .haddock files (which caches names using the NameCache of the GHC session). So we might create new Uniques during renaming to fix this (but I'm not sure that would be problem-free). Instead, we just keep the Name and add the Module where the name is best documented, since it can be useful to keep the original Name around (for e.g. source-code location info and for users of the Haddock API). Also, the names Link/NoLink don't really make sense, since wether to use links or not is entirely up to the users of DocName. In the process of following this change into H.Backends.Html I removed the assumption that binder names are Undocumented (which was just an unnecessary assumption, the OccName is the only thing needed to render these). This will probably make it possible to get rid of the renamer and replace it with a traversal from SYB or Uniplate. Since DocName has changed, InterfaceFile has changed so this patch also increments the file-format version. No backwards-compatibility is implemented. | ||||
* | Manual merge of a patch to the 0.8 branch | David Waern | 2008-01-06 | 1 | -13/+16 |
| | | | | | | | Thu Dec 6 15:00:10 CET 2007 Simon Marlow <simonmar@microsoft.com> * Source links must point to the original module, not the referring module | ||||
* | Handle infix operators correctly in the Type -> HsType translation | David Waern | 2007-12-08 | 1 | -3/+8 |
| | |||||
* | addition of type equality support (at least for HTML generation) | Wolfgang Jeltsch | 2007-12-03 | 1 | -0/+4 |
| | |||||
* | Fix a bug that made haddock loop | David Waern | 2007-11-11 | 1 | -1/+1 |
| | |||||
* | Manual merge of an old patch: | David Waern | 2007-11-11 | 1 | -1/+4 |
| | | | | | | | | | | Thu Apr 19 20:23:40 CEST 2007 Wolfgang Jeltsch <g9ks157k@acme.softbase.org> * bug fix When Haddock was invoked with the --ignore-all-exports flag but the ignore-exports module attribute wasn't used, hyperlinks weren't created for non-exported names. This fix might not be as clean as one would wish (since --ignore-all-exports now results in ignore_all_exports = True *and* an additional OptIgnoreExports option for every module) but at least the bug seems to be resolved now. | ||||
* | Manual merge of a patch from Duncan Coutts that removes the dependency on mtl | David Waern | 2007-11-11 | 2 | -2/+1 |
| | |||||
* | Complain if we can't link to wired-in names | David Waern | 2007-11-08 | 1 | -1/+1 |
| | |||||
* | Remove OrdName stuff | David Waern | 2007-11-08 | 1 | -24/+1 |
| | |||||
* | Small bugfix and cleanup in getDeclFromTyCls | David Waern | 2007-11-08 | 1 | -5/+6 |
| | |||||
* | Remove commented-out code | David Waern | 2007-11-08 | 1 | -14/+1 |
| | |||||
* | Filter out all non-vanilla type sigs | David Waern | 2007-11-08 | 1 | -10/+13 |
| | |||||
* | Wibble | David Waern | 2007-11-06 | 1 | -1/+1 |
| | |||||
* | Filter out instances with TyCons that are not exported | David Waern | 2007-11-06 | 1 | -6/+16 |
| | |||||
* | Don't warn about not being able to link to wired/system/builtin-names | David Waern | 2007-11-05 | 1 | -2/+3 |
| | |||||
* | Wibble | David Waern | 2007-10-21 | 1 | -0/+6 |
| | |||||
* | FIX: Ord for OrdName was not comparing modules | David Waern | 2007-10-21 | 1 | -5/+14 |
| | |||||
* | Improve parsing of doc options | David Waern | 2007-10-02 | 1 | -21/+6 |
| | |||||
* | Go back to using a ModuleMap instead of LookupMod - fixes a bug | David Waern | 2007-10-01 | 1 | -19/+15 |
| | |||||
* | Rename HaddockModule to Interface | David Waern | 2007-08-30 | 3 | -37/+37 |
| | |||||
* | Add some modules that I forgot to add earlier | David Waern | 2007-08-29 | 3 | -0/+1116 |