summaryrefslogtreecommitdiff
path: root/compiler/parser
Commit message (Expand)AuthorAgeFilesLines
* Implement -XStandaloneDeriving, the lexer is now glaexts-freeIan Lynagh2007-07-102-36/+33
* 'a'# syntax is enabled by the MagicHash extensionIan Lynagh2007-07-101-2/+2
* "Foo"# syntax is enabled by the MagicHash extensionIan Lynagh2007-07-101-2/+2
* 5# syntax is enabled by the MagicHash extensionIan Lynagh2007-07-101-9/+9
* {| and |} are -fgenerics syntaxIan Lynagh2007-07-101-3/+6
* Rank 2 and rank n types enable explicit forall syntaxIan Lynagh2007-07-101-0/+2
* RULES pragmas only need explicitForallEnabled, no -fglasgow-extsIan Lynagh2007-07-101-6/+7
* Implement unboxed tuples flagsIan Lynagh2007-07-091-2/+10
* Add -XExistentialQuantification flagIan Lynagh2007-07-091-0/+1
* Implement -XPolymorphicComponentsIan Lynagh2007-07-091-0/+1
* rename tv -> explicitForallIan Lynagh2007-07-091-6/+7
* Implement -XUnicodeSyntaxIan Lynagh2007-07-091-32/+39
* Implement -XRecursiveDoIan Lynagh2007-07-081-2/+5
* Implement -XKindSignaturesIan Lynagh2007-07-081-1/+4
* Support the MagicHash extension as a flag and LANGUAGE pragmaIan Lynagh2007-07-081-24/+27
* FIX read040: patterns with type sig on LHS of do-bindingsimonpj@microsoft.com2007-06-211-1/+1
* Add several new record featuresLemmih2007-06-212-29/+35
* #1318: lex negative unboxed literalsIsaac Dupree2007-05-261-30/+50
* #1318: remove negative-prim-literal old hackish implementationIsaac Dupree2007-05-262-16/+3
* parseInteger->parseUnsignedInteger to clarify meaningIsaac Dupree2007-05-261-7/+7
* -findexed-types -> -ftype-familiesManuel M T Chakravarty2007-05-141-11/+11
* Documented the Unicode tricks that are being played in the lexersMichael D. Adams2007-05-101-6/+9
* Remove the distinction between data and newtype familiesManuel M T Chakravarty2007-05-111-6/+4
* Warning fix for unused and redundant importsMichael D. Adams2007-05-103-5/+0
* FIX parsing of Haddock comments (broken by me in the previous patch)Simon Marlow2007-05-081-1/+12
* FIX: #1253 (Can't use non-layout at top level)Simon Marlow2007-05-071-2/+6
* properly fix leakage of Haddock comment syntax (see #1091, test: read044)Simon Marlow2007-05-071-16/+9
* Make records work properly with type familiessimonpj@microsoft.com2007-05-021-1/+1
* restore the correct Unicode ellipsis characterSimon Marlow2007-04-261-1/+1
* Retain inline-pragma information on unfoldings in interface filessimonpj@microsoft.com2007-04-251-3/+3
* tab, verttab, formfeed, and CR are not allowed in stringsSimon Marlow2007-04-161-5/+5
* Fix external core syntax (though not full compilation)Aaron Tomb2006-11-133-45/+75
* Remove code that is dead, as we require __GLASGOW_HASKELL__ >= 504Ian Lynagh2007-04-064-70/+1
* Emit a decent error message when there is a decl-splice inside a decl-bracketsimonpj@microsoft.com2007-03-232-13/+13
* Fix parsing of parallel array literalsManuel M T Chakravarty2007-02-241-4/+15
* Make HsRecordBinds a data type instead of a synonym.lennart@augustsson.net2007-02-042-8/+8
* Fix Trac #1122; spot absence of TyCon in data/newtype headersimonpj@microsoft.com2007-01-301-8/+7
* Add support for overloaded string literals.lennart@augustsson.net2006-12-212-2/+5
* Remove special lambda unicode character, it didn't work anywaySimon Marlow2007-01-161-1/+0
* Add a warning for tabs in source filesIan Lynagh2007-01-121-2/+32
* Comments onlysimonpj@microsoft.com2007-01-101-1/+11
* Remove the DocEntity type. Fixes the problem with duplicate error messages atdavve@dtek.chalmers.se2007-01-051-22/+15
* HsSyn clean up for indexed typesManuel M T Chakravarty2007-01-053-34/+32
* Standalone deriving wibbles: keyword is 'derive' not 'derived'; and add flag ...simonpj@microsoft.com2007-01-022-6/+6
* Big tidy-up of deriving codesimonpj@microsoft.com2007-01-022-9/+6
* EqPred pretty prints as ~ and equalities without bracketsManuel M T Chakravarty2006-12-291-2/+7
* Adding a GENERATED pragmaandy@galois.com2006-12-292-1/+20
* Parse and desugar equational constraintsManuel M T Chakravarty2006-12-282-18/+25
* Improve parsing for bang patterns (fixes Trac #1041)simonpj@microsoft.com2006-12-082-18/+26
* Kind sigs in associated data/newtype family decls may be omittedManuel M T Chakravarty2006-12-061-27/+89