4
votes
1answer
75 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 ...
1
vote
2answers
209 views

UML activity diagram as DSL; converting to C++

I'm to write an event correlator. A fundamental part of the system will be a huge decision tree that recognizes the origin of the fault basing on recorded states and log files, and one of the primary ...
0
votes
1answer
32 views

How to maintain code generated using DSLs (Domain Specific Languages) and associated code generators?

While I have been doing some basic reading on DSLs and their use in generating code for the implementation of a functionality, I wish to know how this would work should I require to enhance the ...
0
votes
1answer
49 views

How can I specify a column using a #line directive?

In C#, you can use #line directives in generated code to change how errors are reported and how debugging happens. For example, this razor code: @model Foo @{ var foo = ViewBag.Foo; } May ...
4
votes
6answers
192 views

Right tool for translating a DSL into SQL?

I have a domain specific language that can be translated to SQL. Must I write my own lexer, parser, and code generator, or are there tools that could help me?
5
votes
3answers
278 views

Intermediate representation for a Lisp / Clojure DSL

I'm designing a DSL in Clojure which is used to drive a code generator (in this case for procedural image synthesis - clisk) and am having trouble working out the best representation for intermediate ...
3
votes
3answers
529 views

Creating a simple Domain Specific Language

I am curious to learn about creating a domain specific language. For now the domain is quite basic, just have some variables and run some loops, if statements. Edit :The language will be Non-English ...
4
votes
1answer
303 views

inline domain specific language to generate Java code

I work on a program that performs matrix and vector operation in Java. The multiple function call and object creation that occurs in my current implementation makes it sluggish and difficult to ...
3
votes
1answer
339 views

How to automate Lightswitch for metaprogramming

I really like the Ria Services approach, and I see Lightswitch as the next higher level of abstraction, but my scenario is this: I need to be able to define a Lighswitch app without having to rely ...
3
votes
5answers
901 views

Partially parse C++ for a domain-specific language

I would like to create a domain specific language as an augmented-C++ language. I will need mostly two types of contructs: Top-level constructs for specialized types or declarations In-code ...
8
votes
4answers
1k views

Best design for generating code from an AST?

I'm working on a pretty complex DSL that I want to compile down into a few high level languages. The whole process has been a learning experience. The compiler is written in java. I was wondering ...
0
votes
1answer
89 views

Language neutral custom tool

I'm working on a DSL tool, and for this tool, there exists a custom code generation tool that creates output files. Currently, this tool is registered with C# using a RegistrationAttribute on the ...
2
votes
6answers
235 views

Domain Language: What is the best way to express?

One of my client sent me a requirement document and while reading that document there was a flash came in my mind. I started rewriting that big document similar like below. Do you think, an automated ...
5
votes
3answers
4k views

Using a DSL to generate C# Code

Currently the project I'm working with does not have completely fixed models (due to an external influence) and hence I'd like some flexibility in writing them. Currently they are replicated across ...