Timeline
06/16/09:
- 20:24 Ticket #11 (Fixities aren't handled during parsing) closed by
- fixed: Fixities are now taken into account when parsing. The list of known …
06/14/09:
- 15:38 Ticket #1 (Empty instance definitions don't parse) closed by
- fixed: By far the trickiest bug so far. There was an error in the old haskell-src …
- 00:23 Ticket #7 (Parser still balks on some MPTC deriving) closed by
- fixed: Generalization complete. We now allow any valid instance type as argument. …
06/13/09:
- 23:03 Ticket #6 (Parser cannot handle kind signatures on arguments to type family ...) closed by
- fixed: This turned out to be not just with type families, but with kind …
- 21:58 Ticket #31 (LINE pragmas cause trouble) closed by
- fixed: I've disabled unknown pragmas, they are now simply discarded as comments. …
- 21:57 Ticket #31 (LINE pragmas cause trouble) created by
- We cannot handle LINE pragmas since they can appear anywhere at all. This …
- 20:03 Ticket #30 (Check the use on type operators) closed by
- fixed: With the new separation between parse types and actual types, this was …
- 20:00 Ticket #29 (Implement checks on the use of forall-quantified types) closed by
- fixed: I've implemented the checks as noted. I hope they are the correct ones, …
- 19:59 Ticket #28 (Implement checks for what classes, instances and contexts) closed by
- fixed: This should now work correctly from 0.5.1. Case closed.
06/12/09:
- 15:58 Ticket #23 (Missing support for generalised list comprehensions) closed by
- fixed: Support added, case closed.
- 15:57 Ticket #22 (Missing support for parallel list comprehension) closed by
- fixed: Support added, case closed.
- 14:42 Ticket #10 (Arrow syntax is not supported) closed by
- fixed: Support for arrow syntax is now added. Case closed.
06/07/09:
- 15:16 Ticket #8 (Type operators aren't printed infix) closed by
- fixed: A simple matter of changing the pretty printing routine for the TyInfix? …
- 14:53 Ticket #14 (Parametrize parsing on extensions that should be recognized) closed by
- duplicate: This is now enabled in general. There are however three cases left to …
- 14:49 Ticket #30 (Check the use on type operators) created by
- There is a problem in handling type operators. We can't check that …
- 14:41 Ticket #29 (Implement checks on the use of forall-quantified types) created by
- Currently the parser treats all the forall-enabling extensions as …
- 14:23 Ticket #28 (Implement checks for what classes, instances and contexts) created by
- Currently HSE assumes the most liberal rules possible for the use of type …
- 14:14 Ticket #27 (No handling of CPP in code) created by
- The hard part here is not to handle documents with CPP in them, we already …
- 13:46 Ticket #26 (No support for HereDocuments) created by
- Hugs allows a special way to write string literals with spliced variables …
- 13:42 Ticket #25 (No support for restricted type synonyms) created by
- Hugs has an extension that lets a programmer restrict the scope of a …
- 13:39 Ticket #24 (Missing support for extensible record syntax) created by
- Hugs has an extension called TRex, allowing extensible records. This …
- 13:36 Ticket #23 (Missing support for generalised list comprehensions) created by
- This extension allows SQL-like clauses in list …
- 13:32 Ticket #22 (Missing support for parallel list comprehension) created by
- The parallel list comprehension extension allows several parallel …
- 13:30 Ticket #21 (Missing support for the new qualified operator syntax) created by
- Haskell' (whatever form it will come in) will likely have a different form …
- 09:59 Ticket #20 (Support multiple module's in one file) created by
- The Haskell standard says nothing about the relationship between modules …
06/01/09:
- 22:36 Ticket #19 (Annotated trees) created by
- It would be interesting if the ASTs allowed for used-defined …
- 20:44 Ticket #9 (All keywords should be usable as XML tag/attribute names) closed by
- fixed: I've now enumerated all keywords as valid xml entity names.
- 20:43 Ticket #3 (Parser cannot handle GHC's package import feature) closed by
- fixed: Easy fix, this now parses correctly when the PackageImports? extension flag …
- 20:42 Ticket #2 (Parser fails on x-y) closed by
- fixed: I consider this bug fixed, though the overall library is still a bit in …
- 20:39 Ticket #16 (Add more entry points to the grammar) closed by
- fixed: I've added entry points for expressions, patterns, declarations and types, …
05/30/09:
- 13:09 Ticket #18 (test machinery compiles with the wrong version) created by
- The current Setup.hs doesn't compile, unless you already have a version of …
05/26/09:
- 12:07 Ticket #17 (Test driver for pretty-printing) created by
- We currently have some tests for parsing in the Test directory. We need …
- 07:12 Ticket #16 (Add more entry points to the grammar) created by
- Add the possibility of not parsing only strings that result in values of …
- 01:03 Ticket #15 (Modules with no explicit header should be kept headerless) created by
- Currently haskell-src-exts inserts a default "Main" module header, a …
- 00:54 WikiStart edited by
- (diff)
- 00:53 WikiStart edited by
- (diff)
05/25/09:
- 23:36 Ticket #14 (Parametrize parsing on extensions that should be recognized) created by
- The main sticking point for haskell-src-exts at the moment is that it …
- 23:24 Ticket #13 (Add support for comments) created by
- This is an overarching ticket that will be broken down into smaller pieces …
- 23:05 Ticket #12 (Implement support for SrcSpans) created by
- Where a SrcLoc represents a location in the source, a SrcSpan represent …
- 22:58 Ticket #11 (Fixities aren't handled during parsing) created by
- Currently, operator expressions are parsed as left-associative, and of the …
- 21:40 Ticket #10 (Arrow syntax is not supported) created by
- Example borrowed from Yampa:[…]
- 21:33 Ticket #9 (All keywords should be usable as XML tag/attribute names) created by
- I've fixed so that some keywords can be used as attribute names, e.g. …
- 21:25 Ticket #8 (Type operators aren't printed infix) created by
- Reported by stepcut: If you have something like:[…]
- 18:58 Ticket #7 (Parser still balks on some MPTC deriving) created by
- […]
- 18:50 Ticket #6 (Parser cannot handle kind signatures on arguments to type family ...) created by
- […]
- 16:24 Ticket #5 (Parser doesn't handle Unicode special syntax) closed by
- duplicate
- 16:22 Ticket #5 (Parser doesn't handle Unicode special syntax) created by
- […]
- 16:21 Ticket #4 (Parser doesn't handle Unicode special syntax) created by
- […]
- 16:06 Ticket #3 (Parser cannot handle GHC's package import feature) created by
- […]
- 16:05 Ticket #2 (Parser fails on x-y) created by
- […] Due to the HSX extension, x-y …
05/19/09:
- 12:05 Ticket #1 (Empty instance definitions don't parse) created by
- Parse error on: […]
- 11:54 SandBox created by
- 11:54 WikiRestructuredText created by
- 11:54 TracUpgrade created by
- 11:54 TracRoadmap created by
- 11:54 TracReports created by
- 11:54 TracAdmin created by
- 11:54 WikiProcessors created by
- 11:54 TracUnicode created by
- 11:54 TracPermissions created by
- 11:54 TracRss created by
- 11:54 TracIni created by
- 11:54 TracInterfaceCustomization created by
- 11:54 TracNotification created by
- 11:54 WikiDeletePage created by
- 11:54 TracGuide created by
- 11:54 TracRevisionLog created by
- 11:54 TitleIndex created by
- 11:54 TracImport created by
- 11:54 TracFastCgi created by
- 11:54 TracSupport created by
- 11:54 RecentChanges created by
- 11:54 TracLogging created by
- 11:54 WikiFormatting created by
- 11:54 TracModPython created by
- 11:54 TracInstall created by
- 11:54 TracSearch created by
- 11:54 WikiHtml created by
- 11:54 CamelCase created by
- 11:54 WikiRestructuredTextLinks created by
- 11:54 WikiStart created by
- 11:54 TracPlugins created by
- 11:54 TracCgi created by
- 11:54 WikiPageNames created by
- 11:54 TracAccessibility created by
- 11:54 TracBackup created by
- 11:54 TracWiki created by
- 11:54 TracSyntaxColoring created by
- 11:54 WikiNewPage created by
- 11:54 TracQuery created by
- 11:54 TracTickets created by
- 11:54 TracTicketsCustomFields created by
- 11:54 TracStandalone created by
- 11:54 InterTrac created by
- 11:54 TracLinks created by
- 11:54 TracBrowser created by
- 11:54 TracEnvironment created by
- 11:54 InterWiki created by
- 11:54 TracChangeset created by
- 11:54 WikiMacros created by
- 11:54 InterMapTxt created by
- 11:54 TracTimeline created by
Note: See TracTimeline
for information about the timeline view.
