3
votes
3answers
82 views
Writing my first DSL in C# and getting hung up on func<T> & Action
I'm taking a crack at writing my first DSL for a simple tool at work. I'm using the builder pattern to setup the complex parent object but am running into brick walls for building out the child …
2
votes
4answers
94 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 …
-1
votes
1answer
52 views
Compact Class DSL in python
I want to have compact class based python DSLs in the following form:
class MyClass(Static):
z = 3
def _init_(cls, x=0):
cls._x = x
def set_x(cls, x):
cls._x = x
def …
3
votes
4answers
90 views
What features would you like to see in a game programming DSL?
Me and my friend are in the first stages of creating a domain-specific language designed for game programming, for his thesis paper.
The language will be fairly low-level, it will have a C-like …
5
votes
4answers
127 views
Does anyone know of a good reference for DSL design?
I've been looking into designing some Domain Specific Languages which I will probably implement in Clojure, but I really don't have any idea of what's involved.
The languages I have in mind are …
4
votes
3answers
102 views
How do I build a domain-specific query language?
I have a biology database that I would like to query. There is also a given terminology bank I have access to that has formalizable predicates. I would like to build a query language for this DB using …
1
vote
1answer
22 views
Stop and continue while evaluation an expression tree
At the office, we've applied simple Domain Specific Languages (DSLs) to several problem domains we encountered.
Basically, we parse (lex/yacc) the custom script into an expression tree. Every node …
1
vote
1answer
48 views
language to create flowcharts
Hi,
This seems like something which must have been answered before, but I can't find anything appropriate in the question archives. Basically, I'm looking for a little Domain Specific Language to …
0
votes
1answer
14 views
Literal structure for time datatype
I'm working on a DSL that should support a time literal and am interested in two different things:
What language(s) or DSL(s) support a time literal?
How is the literal structured?
I'm leaning …
5
votes
5answers
396 views
Looking for good server-side language that will allow players to upload code that can be executed
I had an idea of a program I want to write, but which language would be best is my problem.
If I have a car racing game and I want to allow users to submit code for new interactive 3D race tracks …
3
votes
6answers
156 views
looking for scientific evidence of the benefits of using a DSL
Greg Wilson's talk "bits of evidence" ( http://www.slideshare.net/gvwilson/bits-of-evidence-2338367 ) discusses the lack of evidence behind the following claims that Martin Fowler has advanced as …
0
votes
1answer
16 views
DSL Beta 2 - Connector Moniker - Why is it not in the diagram file?
I am creating a DSL, I want to associate two Entities with a connector but I do not want the EntityMoniker to be in the underlying XML, I need it to be in the Diagram File. I am not sure why it is not …
3
votes
6answers
207 views
What separates a Ruby DSL from an ordinary API
What are some defining characteristics of a Ruby DSL that separate it from just a regular API?
1
vote
2answers
66 views
Ubiquitous language - term for developers and users
Our project's team members are a big fans of Ubiquitous Language concept from the Domain-Driven Design Community.
And here is the problem we've found:
Non-techy users like to use a simplified names …
1
vote
7answers
108 views
Embedded scripting engine for DSL
I'm working on a project which needs an embedded DSL to fullfill its expected requirements.
The DSL would be user defined event based. Here goes a mockup of the desired syntax:
user-defined-event-1 …
