Tagged Questions
0
votes
2answers
158 views
Syntax Preprocessors for Java
I'm looking for a Java macro language that provides for convenient ways of doing closures (that compile to anonymous inner classes) and list comprehension (that compiles down to basic java loops).
An ...
1
vote
1answer
135 views
Tool for “internalisation” of an external DSL in Java
I am developing and maintaining a database-abstraction library called jOOQ, which aims to "internalise" SQL as an external DSL into Java. The goal of this endeavour is to allow for type-safely ...
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 ...
6
votes
8answers
854 views
Which language (that runs on JVM) is best suited for creating a DSL?
We have a requirement to create complex fixed length and variable length Strings. These strings might represent a customer profile, an order etc. Which JVM based programming language do you guys ...