Tagged Questions
1
vote
1answer
100 views
Bind monadic variables over several functions
I'm interested in getting as close as possible to the following syntax. TH is just fine by me.
bootapplication :: IO ()
bootapplication = do
clientA <- newChan :: IO (Chan AMsg)
clientB <- ...
6
votes
1answer
156 views
Typeclass for functions with different numbers of arguments
In my simple Haskell DSL, I have the following functions to call other functions:
callF :: forall a. (Typeable a)
=> (V a) -> (V a)
callF fp@(V (FunP name)) =
pack $ FunAppl (prettyV fp) []
...
4
votes
1answer
80 views
Haskell LLVM — Duplicate Functions Created
The problem I am having with the LLVM-Haskell bindings is that I am getting "duplicated" names. I think the best way to explain my problem is with a small concrete example (note the example is ...
8
votes
2answers
763 views
Transform a GADT without constraints to another GADT with constraints when such constraints hold
Can we transform a GADT without a given constraint on its constructors to a GADT that does have the said constraint? I want to do this because I want to get a deep-embedding of Arrows and do some ...
2
votes
2answers
140 views
EDSL with name binding in C++
Is it possible to write an edsl in C++ which binds values to variable names? For example, I can write a edsl in Haskell that allows me to write the following (see also this question):
prog3 :: ...
6
votes
2answers
194 views
Printing an AST with variable names
I am trying to implement an EDSL in Haskell. I would like to pretty print the AST with the variable names that are bound (if I can't get the real names then some generated names would do).
This is ...
5
votes
3answers
249 views
Is a bindable functor a useful abstraction for more type safe DSLs?
Motivation
I'm currently working on a little hobby project to try and implement something like TaskJuggler in Haskell, mostly as an experiment to play with writing domain specific languages.
My ...
0
votes
2answers
171 views
How do I restrict the types in a heterogenous list?
I am currently trying to create a (sort of) typesafe xml like syntax embedded into Haskell. In the end I am hoping to achieve something like this:
tree = group [arg1 "str", arg2 42]
[item ...
6
votes
0answers
261 views
How to build a DSL for looking up fields from a record in Haskell
TL;DR: I need help figuring out how to generate code that will return one of a small number of data types (probably just Double and Bool) from various fields on disparate records.
Long form: Assuming ...
18
votes
2answers
564 views
How can I recover sharing in a GADT?
In Type-Safe Observable Sharing in Haskell Andy Gill shows how to recover sharing that existed on the Haskell level, in a DSL. His solution is implemented in the data-reify package. Can this approach ...
7
votes
1answer
304 views
How can Haskell quasiquotation be used for replacing tokens on the Haskell level?
Quasiquotation as described in haskellwiki is shown mostly as useful tool for embedding other languages inside Haskell without messing around with string quotation.
Question is: For Haskell itself, ...
1
vote
1answer
182 views
How would you apply Parsec to generate code from a DSL?
I've read Chapter 16 of Real World Haskell on Parsec . The examples in this chapter show how to use Parsec to extract data structures out of strings.
I'm wondering how one would go about applying ...
14
votes
3answers
683 views
Temporary namespace/context in Haskell
In Io, you can set the execution context using do:
Http := Object clone
Http get := method(uri, ("<GET request to " .. uri .. ">") println)
Http delete := method(uri, ("<DELETE request to " ...
5
votes
1answer
165 views
How do you create array literals with HJScript or indeed HJavaScript?
In HJavaScript there is the Array type, but I can't see a way of constructing a literal that would translate, for example, to JS as [1,2,3]. I don't want to have to create a new Array() and then push ...
2
votes
3answers
652 views
Haskell equivalent of Python's “Construct”
Construct is a DSL implemented in Python used to describe data structures (binary and textual). Once you have the data structure described, construct can parse and build it for you. Which is good ...
