RE: Question about Haskell AST

2011-02-21 Thread Jane Ren
e Nothing setTargets [target] load LoadAllTargets" Would you have any other suggestions? Thanks From: Simon Peyton-Jones [simo...@microsoft.com] Sent: Tuesday, January 25, 2011 4:00 AM To: Jane Ren; glasgow-haskell-users@haskell.org Cc

RE: Question about Haskell AST

2011-02-04 Thread Jane Ren
Max Bolingbroke [batterseapo...@hotmail.com] Sent: Tuesday, January 25, 2011 1:34 AM To: Jane Ren Cc: Simon Peyton-Jones; glasgow-haskell-users@haskell.org Subject: Re: Question about Haskell AST On 24 January 2011 17:20, Jane Ren wrote: > When I try this, I get > "AstWalker: panic! (the &#x

RE: Question about Haskell AST

2011-01-24 Thread Jane Ren
as how I can get parse trees for the Haskell base modules? Sure, I can augment that wiki page. Thanks Jane From: Simon Peyton-Jones [simo...@microsoft.com] Sent: Tuesday, January 11, 2011 12:06 AM To: Jane Ren; glasgow-haskell-users@haskell.org

Question about Haskell AST

2011-01-10 Thread Jane Ren
Hi, I need to be able to take a piece of Haskell source code and get an simplified, typed, intermediate representation of the AST, which means I need to use compiler/coreSyn/CoreSyn.lhs So I'm first trying to get the desguaredModule of the source code with ... modSum <- getModS

RE: Fwd:

2011-01-10 Thread Jane Ren
Hi, I need to be able to take a piece of Haskell source code and get an simplified, typed, intermediate representation of the AST, which means I need to use compiler/coreSyn/CoreSyn.lhs So I'm first trying to get the desguaredModule of the source code with ... modSum <- getModS

RE: GHC ParseTree Module

2011-01-03 Thread Jane Ren
main = do file_content <- readFile targetFile let ast = parse file_content print ast Thanks. From: Malcolm Wallace [malcolm.wall...@me.com] Sent: Monday, January 03, 2011 12:44 AM To: Jane Ren; GHC-users List Cc: haskell-c...@haskell.org Subject: