Re: [Haskell-cafe] ANN: HPath-0.0.0

2009-12-30 Thread Alexander Dunlap
On Tue, Dec 29, 2009 at 11:52 PM, Jason Dusek jason.du...@gmail.com wrote:  HPath is a command line utility to grab the Haskell source  for a given identifier:  :; dist/build/hpath/hpath HPath.Path.parse 2/dev/null parse                       ::  String - Either ParseError Path parse s =

Re: [Haskell-cafe] ANN: HPath-0.0.0

2009-12-30 Thread Jason Dusek
Yes, I just saw that. http://hackage.haskell.org/package/HPath-0.0.1 It doesn't handle Haskell needing the C preprocessor and there are some real problems with the output of data/type definitions -- I hope to resolve these shortly. -- Jason Dusek

Re: [Haskell-cafe] ANN: HPath-0.0.0

2009-12-30 Thread Jason Dusek
Here is a bug report for the newlines issue: http://trac.haskell.org/haskell-src-exts/ticket/188 A tentative patch is also included. This is not something I can really fix within HPath, unfortunately. -- Jason Dusek ___ Haskell-Cafe mailing

[Haskell-cafe] ANN: HPath-0.0.0

2009-12-29 Thread Jason Dusek
HPath is a command line utility to grab the Haskell source for a given identifier: :; dist/build/hpath/hpath HPath.Path.parse 2/dev/null parse :: String - Either ParseError Path parse s = Text.ParserCombinators.Parsec.parse (qualified []) s s This is an alpha