2
votes
4answers
122 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
vote
1answer
12 views
Permanent node in DSL explorer
In my custom DSL tool I want a node in its Explorer which cannot be removed. Other than that, I want it to be like a regular node. Basically what I want is a node like the Xml Serialization Behavior …
0
votes
1answer
13 views
Treetop: How to make combined rule?
I want to make a simple JSP parser by using Treetop. Now, I have the following problem:
My basic grammar for starting is:
grammar Jspgrammar
rule jspToken
'<%'
end
rule …
0
votes
1answer
20 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 …
3
votes
7answers
197 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 …
3
votes
3answers
101 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 …
0
votes
0answers
12 views
DSL Toolkit: How can I get correct elements written in this scenario?
Info: C# , VS2010 Beta 2 , DSL ToolKit Beta 2
I am trying to create the following generated XML in my DSL Diagram when used
<Method>
...
<FilterDescriptors>
…
-1
votes
5answers
224 views
Tools to build a DSL in .NET
I'm getting teased more and more into developing DSLs. I've developed a tiny one with F# using fslex and fsyacc but the error messages are inaccurate (I also can't find a way to generate better ones, …
3
votes
4answers
106 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
152 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 …
-1
votes
1answer
58 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 …
0
votes
1answer
20 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 …
5
votes
3answers
165 views
Is there a .NET based CSS abstraction library?
I've been working on a really large project for almost 2 years and the client requirements keep changing. These changes, of course, effect everything and I would like to find a way to work with the …
4
votes
3answers
111 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
26 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 …
