summaryrefslogtreecommitdiff
path: root/libraries/base/Debug
Commit message (Collapse)AuthorAgeFilesLines
...
* [project @ 2004-08-13 13:29:00 by simonmar]simonmar2004-08-131-1/+1
| | | | | Changes required be merge of backend-hacking-branch. Mostly config.h ==> ghcconfig.h.
* [project @ 2004-02-17 11:16:36 by malcolm]malcolm2004-02-171-1/+1
| | | | Exclude "config.h" inclusion for nhc98 as well as Hugs.
* [project @ 2004-02-16 11:08:58 by ross]ross2004-02-161-5/+3
| | | | adjust imports for portability
* [project @ 2004-02-15 13:04:47 by krasimir]krasimir2004-02-151-13/+65
| | | | Added support for tracers
* [project @ 2003-08-05 12:13:29 by panne]panne2003-08-054-720/+0
| | | | Moved QuickCheck into separate package
* [project @ 2003-07-08 16:04:54 by panne]panne2003-07-081-0/+1
| | | | Export TestResult, too
* [project @ 2003-05-12 10:16:22 by ross]ross2003-05-121-1/+1
| | | | documentation only: tag some things as "GHC only".
* [project @ 2003-01-06 14:30:12 by ross]ross2003-01-061-10/+3
| | | | | Consolidate to a single version of trace (except that GHC has the post-hook). This version adds a newline, which the old Hugs and NHC versions didn't.
* [project @ 2002-10-11 11:05:20 by malcolm]malcolm2002-10-111-0/+5
| | | | Make some more libraries buildable with nhc98.
* [project @ 2002-07-16 16:08:58 by ross]ross2002-07-161-0/+4
| | | | | Add imports of Hugs.* modules (wrapped in #ifdef __HUGS__) to make these modules work with Hugs.
* [project @ 2002-05-10 16:18:28 by simonmar]simonmar2002-05-101-1/+10
| | | | More documentation
* [project @ 2002-05-09 13:16:29 by simonmar]simonmar2002-05-095-5/+5
| | | | Rename libraries/core to libraries/base in the module headers.
* [project @ 2002-05-09 13:15:07 by simonmar]simonmar2002-05-094-0/+8
| | | | Various tweaks needed to get the source processed cleanly with Haddock.
* [project @ 2002-04-26 13:34:05 by simonmar]simonmar2002-04-265-10/+0
| | | | | Remove \$Id\$ from all files: it isn't particularly useful (see previous discussion on cvs-ghc@haskell.org), and it confuses Haddock.
* [project @ 2002-04-24 16:31:37 by simonmar]simonmar2002-04-245-10/+10
| | | | | Add the single character '|' to the header comment of each module so that Haddock will parse it as the module documentation.
* [project @ 2002-04-24 16:01:51 by simonmar]simonmar2002-04-241-2/+2
| | | | Update foreign import syntax
* [project @ 2002-02-11 12:28:04 by simonmar]simonmar2002-02-111-0/+86
| | | | Final part of QuickCheck from hslibs/utils.
* [project @ 2001-12-21 15:07:20 by simonmar]simonmar2001-12-211-3/+3
| | | | | Merge up to the ghc/lib/std on the HEAD (tagged as new-libraries-last-merged).
* [project @ 2001-08-17 12:48:38 by simonmar]simonmar2001-08-173-0/+633
| | | | Add QuickCheck from package util.
* [project @ 2001-06-28 14:15:04 by simonmar]simonmar2001-06-281-0/+41
First cut of the Haskell Core Libraries ======================================= NOTE: it's not meant to be a working snapshot. The code is just here to look at and so the NHC/Hugs guys can start playing around with it. There is no build system. For GHC, the libraries tree is intended to be grafted onto an existing fptools/ tree, and the Makefile in libraries/core is a quick hack for that setup. This won't work at the moment without the other changes needed in fptools/ghc, which I haven't committed because they'll cause breakage. However, with the changes required these sources build a working Prelude and libraries. The layout mostly follows the one we agreed on, with one or two minor changes; in particular the Data/Array layout probably isn't final (there are several choices here). The document is in libraries/core/doc as promised. The cbits stuff is just a copy of ghc/lib/std/cbits and has GHC-specific stuff in it. We should really separate the compiler-specific C support from any compiler-independent C support there might be. Don't pay too much attention to the portability or stability status indicated in the header of each source file at the moment - I haven't gone through to make sure they're all consistent and make sense. I'm using non-literate source outside of GHC/. Hope that's ok with everyone. We need to discuss how the build system is going to work...