Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Bug fix | David Waern | 2009-02-27 | 1 | -0/+65 |
| | | | | | | | | | | | | | | | | | | We tried to filter out subordinates that were already exported through their parent. This didn't work properly since we were in some cases looking at the grand-parent and not the parent. We now properly compute all the parent-child relations of a declaration, and use this information to get the parent of a subordinate. We also didn't consider record fields with multiple parents. This is now handled correctly. We don't currently support separately exported associated types. But when we do, they should be handled correctly by this process too. Also slightly improved the warning message that we give when filtering out subordinates. | ||||
* | Fix warnings in H.GHC.Utils | David Waern | 2008-10-22 | 1 | -0/+5 |
| | |||||
* | Fix some warnings | Ian Lynagh | 2008-08-27 | 1 | -7/+4 |
| | |||||
* | Make H.GHC.Utils build with GHC HEAD | David Waern | 2008-08-10 | 1 | -1/+10 |
| | |||||
* | Filter out separately exported ATs (take two) | David Waern | 2008-08-03 | 1 | -0/+4 |
| | |||||
* | Move some utility functions from H.I.Create to H.GHC.Utils | David Waern | 2008-08-03 | 1 | -0/+17 |
| | |||||
* | Move reL to H.GHC.Utils so we can use it everywhere | David Waern | 2008-08-03 | 1 | -0/+4 |
| | |||||
* | Move unL from H.B.Hoogle to H.GHC.Utils | David Waern | 2008-07-29 | 1 | -0/+4 |
| | | | | I like Neil's shorter unL better than unLoc from the GHC API. | ||||
* | Simplify definition of pretty and trace_ppr | David Waern | 2008-07-25 | 1 | -2/+2 |
| | |||||
* | Be more consistent with GHC API naming in H.GHC.Utils | David Waern | 2008-06-19 | 1 | -6/+6 |
| | |||||
* | Add modulePkgInfo to Haddock.GHC.Utils, which gives back package name and ↵ | Neil Mitchell | 2008-06-16 | 1 | -0/+9 |
| | | | | version info | ||||
* | Add hide options to some source files | David Waern | 2008-05-01 | 1 | -0/+3 |
| | |||||
* | Fix printing of data binders | David Waern | 2008-04-12 | 1 | -0/+4 |
| | |||||
* | H.GHC.Utils: add some functions that were removed by mistake | David Waern | 2008-02-10 | 1 | -0/+8 |
| | |||||
* | H.GHC.Utils: remove unused imports/exports | David Waern | 2008-02-09 | 1 | -40/+4 |
| | |||||
* | Change the representation of DocNames | David Waern | 2008-02-09 | 1 | -3/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. | ||||
* | Add some Outputable utils | David Waern | 2007-10-21 | 1 | -0/+11 |
| | |||||
* | FIX: do not quote varsym type operators | David Waern | 2007-09-29 | 1 | -1/+1 |
| | |||||
* | Use isLexConSym/isLexVarSym from OccName | David Waern | 2007-09-29 | 1 | -6/+3 |
| | |||||
* | FIX: prefix types used as operators should be quoted | David Waern | 2007-09-29 | 1 | -0/+2 |
| | |||||
* | Major refactoring | David Waern | 2007-08-29 | 1 | -0/+79 |