summaryrefslogtreecommitdiff
path: root/compiler/parser/ParserCoreUtils.hs
Commit message (Collapse)AuthorAgeFilesLines
* Remove external coreAustin Seipp2014-05-031-77/+0
| | | | Signed-off-by: Austin Seipp <austin@well-typed.com>
* Replace uses of the old catch function with the new oneIan Lynagh2010-12-181-1/+2
|
* Remove GHC's haskell98 dependencyIan Lynagh2009-07-241-1/+1
|
* Fixed warnings in parser/ParserCoreUtilsTwan van Laarhoven2008-02-041-7/+0
|
* Fix CodingStyle#Warnings URLsIan Lynagh2007-09-041-1/+1
|
* Use OPTIONS rather than OPTIONS_GHC for pragmasIan Lynagh2007-09-031-2/+2
| | | | | | | Older GHCs can't parse OPTIONS_GHC. This also changes the URL referenced for the -w options from WorkingConventions#Warnings to CodingStyle#Warnings for the compiler modules.
* Add {-# OPTIONS_GHC -w #-} and some blurb to all compiler modulesIan Lynagh2007-09-011-0/+7
|
* Fix external core syntax (though not full compilation)Aaron Tomb2006-11-131-0/+4
| | | | | | | | | This patch updates the External Core creator, pretty-printer, and parser to agree on a concrete syntax for External Core, including the constructs required by the change to System FC. Code to create valid ASTs from External Core files will come later, as will bits for renaming, typechecking, and desugaring.
* Massive patch for the first months work adding System FC to GHC #27Manuel M T Chakravarty2006-08-041-1/+1
| | | | | | | | Broken up massive patch -=chak Original log message: This is (sadly) all done in one patch to avoid Darcs bugs. It's not complete work... more FC stuff to come. A compiler using just this patch will fail dismally.
* Reorganisation of the source treeSimon Marlow2006-04-071-0/+72
Most of the other users of the fptools build system have migrated to Cabal, and with the move to darcs we can now flatten the source tree without losing history, so here goes. The main change is that the ghc/ subdir is gone, and most of what it contained is now at the top level. The build system now makes no pretense at being multi-project, it is just the GHC build system. No doubt this will break many things, and there will be a period of instability while we fix the dependencies. A straightforward build should work, but I haven't yet fixed binary/source distributions. Changes to the Building Guide will follow, too.