aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Stop using the map from exported names to declarationsDavid Waern2008-07-122-12/+11
| | | | | | | | | | | | | | | During creation of the interface, we were using two maps: one from exported names to declarations, and one from all defined names in the module to declarations. The first contained subordinate names while the second one didn't. The first map was never used to look up names not defined in the associated module, so if we add subordinate names to the second map, we could use it everywhere. That's that this patch does. This simplifies code because we don't have to pass around two maps everywhere. We now store the map from locally defined things in the interface structure instead of the one from exported names.
* Remove filtering of instancesDavid Waern2008-07-071-2/+2
| | | | | | | We were filtering out all instances for types with unknown names. This was probably an attempt to filter out instances for internal types. I am removing the filtering for the moment, and will try to fix this properly later.
* More support for type families and associated typesDavid Waern2008-07-022-50/+73
| | | | Now we just need to render the instances
* Remove redundant check for summary when rendering data typesDavid Waern2008-07-021-4/+3
|
* Render type family declarations (untested)David Waern2008-07-021-6/+80
|
* Rename associated typesDavid Waern2008-06-301-5/+7
|
* Rename type patternsDavid Waern2008-06-301-5/+9
|
* Rename TyFamilyDavid Waern2008-06-301-3/+8
|
* Rename ForeignTypeDavid Waern2008-06-301-4/+3
|
* Improve wording in the help messageDavid Waern2008-06-261-2/+2
|
* Use ghc-paths to get the lib dirDavid Waern2008-06-262-4/+9
| | | | | The path can still be overridden using the -B flag. It's not longer required to pass the lib dir to the program that runs the test suite.
* Be more consistent with GHC API naming in H.GHC.UtilsDavid Waern2008-06-193-9/+9
|
* In Hoogle do not list things that are not local to this moduleNeil Mitchell2008-06-181-1/+6
|
* Change Hoogle to take the package name and package version separatelyNeil Mitchell2008-06-162-10/+17
|
* Add modulePkgInfo to Haddock.GHC.Utils, which gives back package name and ↵Neil Mitchell2008-06-161-0/+9
| | | | version info
* Change packageName to packageStr, as it better reflects the information ↵Neil Mitchell2008-06-161-6/+6
| | | | stored in it
* Default to "main" if there is no package, otherwise will clobber hoogle's ↵Neil Mitchell2008-06-161-1/+1
| | | | hoogle info
* Remove <document comment> from the Hoogle outputNeil Mitchell2008-06-141-1/+5
|
* Add initial structure for outputting documentation as well, but does not yet ↵Neil Mitchell2008-06-141-5/+21
| | | | output anything
* Simplify the newtype/data outputting in Hoogle, as haddock does it automaticallyNeil Mitchell2008-06-141-6/+2
|
* Rewrite the --hoogle flag supportNeil Mitchell2008-06-072-137/+64
|
* Add hide options to some source filesDavid Waern2008-05-013-0/+9
|
* Export DocName in the APIDavid Waern2008-05-011-1/+3
|
* Add LANGUAGE pragmas to source filesDavid Waern2008-05-013-0/+10
|
* Remove claim of backwards compatibility from docs for readInterfaceFileDavid Waern2008-05-011-2/+0
|
* Fix missing parenthesis in constructor args bugDavid Waern2008-04-121-4/+4
|
* Fix printing of data bindersDavid Waern2008-04-122-3/+9
|
* Add a flag for turning off all warningsDavid Waern2008-04-113-8/+11
|
* Update the version message to fit in small terminalsDavid Waern2008-02-101-2/+2
|
* Fix some trivial warnings in H.InterfaceFileDavid Waern2008-02-101-4/+7
|
* H.GHC.Utils: add some functions that were removed by mistakeDavid Waern2008-02-101-0/+8
|
* H.GHC.Utils: remove unused imports/exportsDavid Waern2008-02-091-40/+4
|
* Change the representation of DocNamesDavid Waern2008-02-0912-116/+141
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* Export necessary stuff from Distribution.HaddockDavid Waern2008-01-071-0/+4
|
* Add documentation for readInterfaceFileDavid Waern2008-01-071-1/+5
|
* Remove --no-implicit-prelide flagDavid Waern2008-01-071-3/+0
|
* Remove the -use-package flag, we don't support it anywayDavid Waern2008-01-071-3/+0
|
* Manual merge of a patch to the 0.8 branchDavid Waern2008-01-063-22/+31
| | | | | | | 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
* Source links must point to the original module, not the referring moduleSimon Marlow2007-12-061-3/+11
|
* Add DrIFT commandsDavid Waern2008-01-051-1/+2
|
* Fix a bug (use ppTyName instead of ppName to print names in type apps)David Waern2007-12-081-1/+1
|
* Fix rendering of class operatorsDavid Waern2007-12-081-42/+26
|
* Fix rendering of instance heads to handle infix operatorsDavid Waern2007-12-081-13/+22
| | | | | This is also a refactoring to share this code for rendering predicates.
* Use ppParendType when printing types args in predicatesDavid Waern2007-12-081-4/+5
|
* Add ppLParendTypes/ppLParendTypeDavid Waern2007-12-081-4/+9
|
* Handle infix operators correctly in the Type -> HsType translationDavid Waern2007-12-081-3/+8
|
* Code layout changesDavid Waern2007-12-081-2/+2
|
* Handle class operators correctly when rendering predicatesDavid Waern2007-12-081-1/+15
|
* addition of type equality support (at least for HTML generation)Wolfgang Jeltsch2007-12-032-0/+5
|
* Make the search box in a form so that enter does the default searchNeil Mitchell2007-01-121-4/+6
|