JonasDuregard

Results 14 comments of JonasDuregard

IMO this is outside the scope of haskell-src-meta (it would require more than just a translation). However if the code only needs to support a given set of quasi-quoters, it...

How about a parseWithExts that takes a list of known extensions and enables them? (almost always the only part of the ParseMode anyone edits?) Arguably, the default mode for parseExp...

Here's a list of reverse dependencies: http://bifunctor.homelinux.net/~roel/cgi-bin/hackage-scripts/revdeps/haskell-src-meta-0.2#direct There are some additional dependencies that use 1.1. I would like to add that it would be nice if some modules might be...

Why does eval return an environment at all? I don't think it should. Has it always done that? Returning the environment with the variable bound would be a bad idea,...

I see. I doubt that is a good strategy though. At least not the way it is implemented now because it introduces an evaluation order, destroying laziness. I'm guessing things...

Maybe you can somehow avoid adding it to the environment in the first place? This depends a lot on how you represent linear expressions. Is there a special lambda abstraction...

If you have a map that maps linear variables to references (`M.Map Var (IORef Value)` or such), when a linear variable is used you would use unsafePerformIO to fetch it's...

Handling modules could require quite a bit of work. It would be nice to do it, but other things are higher priority. From the interpreters perspective a module could be...

Here is a project worth looking at: https://github.com/mgrabmueller/AlgorithmW

I believe on the last meeting we discussed having cProgram give some kind of record type containing a list of function declarations, a list of data type declarations and a...