The dsl-tools tag has no wiki summary.
4
votes
1answer
74 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 ...
0
votes
4answers
110 views
Representing my domain specific language
I've designed a very simple domain specific language(DSL) to specify and execute full-screen interactive behavior on devices. It's event based action language with XML as the carrier syntax. Example ...
2
votes
0answers
91 views
How to make DSL compatible w/ both VS2010 and 2012?
I'm in charge of a DSL/VSVM VSIX extension at work and, since VS2012 just got released, I want to make it compatible with both.
The VSIX is already installable in both environments, but I get load ...
-1
votes
1answer
151 views
What are the steps to create domain specific query language?
i want to create domain specific query language
i need steps to create it and how to transfer from the created domain specific query language to normal SQL query to execute it.
and any recommended ...
0
votes
1answer
44 views
Can't get a shape to enter in “edit mode”. Why?
I have created a very simple DSL that as a particular shape (TasksGroupShape) that I can't get to enter in edit mode either when the user starts to hit the keyboard or presses F2.
This shape is a ...
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 ...
2
votes
1answer
136 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 ...
0
votes
1answer
217 views
Using XText to create a DSL for describing proprietary XML-formats
At the moment, I have to work with XACML. As there doesn't seem to be an editor to fit my needs, and as writing documents in it is a real pain, I wonder if I could not create some sort of DSL to make ...
0
votes
1answer
311 views
DSL Tool NameAndType dynamic list
I have a question about DSL Class Shape Properties.
I create a kind of DSL Tool. I want to have functionality a little bit like in class diagram.
I have shapes in my model. I have Class Shape with ...
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 ...
1
vote
1answer
131 views
Someone to explain the mechanics for DSL language creation “in plain english”
Basically the problem is that I'm starting doing somme development of Visual Studio 2010 extensions and language definitions are rather complex, so anyone giving a small intro and pointing some good ...
0
votes
1answer
291 views
DSL tools and custom framework
I want to create a library that will operate the machine state, as defined by the user. To create a designer, I want to use Visual Studio DSL Tools. In most examples of DSL Tools are used to generate ...
7
votes
6answers
2k views
Textual Domain-Specific language (DSL) development with Microsoft Visual Studio
I did some researches on developing a DSL in visual studio. At the beginning, I found out there is a Visualization and Modeling SDK for VS2010. It has a tool called DSL tool. But it seems that it is ...
1
vote
1answer
363 views
Can I create a visual DSL that does not require Visual Studio?
I would like to create a visual DSL (boxes and arrows). I have found that I can create such a DSL using Microsoft's Visualization and modeling SDK (DSL Tools sequel, for VS2010) and there is also a ...
6
votes
8answers
855 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 ...
5
votes
3answers
568 views
Good tutorials to understand Domain Specific Languages (DSLs) from the scratch , to start a survey thesis
My thesis topic is about Domain Specific languages in general, I want to focus on design or implementation for external or internal DSLs but I can't even think or start because I am facing problems ...
10
votes
3answers
1k views
Pros/cons of different language workbench tools such as Xtext and MPS?
Does anyone have experience working with language workbench tools such as Xtext, Spoofax, and JetBrains' MPS? I'm looking to try one out and am having a hard time finding a good comparison of the ...
1
vote
1answer
692 views
Getting started with the new Visual Studio Visualization and Modeling SDK (was DSL SDK)
Is there a good guide on how to setup and use the new Visual Studio Visualization and Modeling SDK with vs 2010 and vs 2008 ?
reference:
...
0
votes
1answer
120 views
dslVersion - How to increment but still support older versions?
Tech: Visual Studio 2010, Visual Studio Visualization & Modeling SDK
We have a commercial Visual Studio 2010 DSL, when we release a new version we want to increment the version number. I open the ...
2
votes
2answers
301 views
DSLs(Domain Specific Programming Languages) implemented using different GPLs(General Purpose Programming Languages)
I am looking for DSLs implemented using general purpose programming languages(GPLs) e.g., C#, Java , Scala and so on. Primary goal is to survey various important attributes of well-designed DSL ...
0
votes
2answers
94 views
Do you know what are the best Domain Specific Languages(DSL) tools for .NET 4.0?
I would like to know what are the best DSL tools created to be used in .NET.? I have googled a bit, but, as I have no experience, I just want to be sure that the one I'm going to use is the best or it ...
0
votes
1answer
424 views
VS2010 Project Template + VMSDK
For the life of me, I can't get my DSL project to be exported as a template, other than the default ItemTemplate (as in Add New Item)
Does anyone happen to have a summary of what has to be done to be ...
2
votes
1answer
100 views
Update Compartment Shape Outline Color on DragOver in DSL
I am looking to be able to validate if user is looking to make a valid drag drop and have this indicated by the colour of the destination CompartmentShape, I have done the following which gives me the ...
0
votes
1answer
56 views
Using DSL , How to add a child element by rule while adding a parent element
Using DSL, How to add an element based on adding someother element?
0
votes
1answer
225 views
Expand / Collapse Swimlane (Domain Specific Language) C#
I have multiple swimlanes on the surface, Is it possible to have expand / collapse functionality to these swimlanes?. My swimlanes are going to contain different shapes (Image Shapes), Geometry shape ...
2
votes
2answers
1k views
Transforming TT files in MsBuild
I need to build a DSL Solution using MsBuild and want to be able to transform the TT files, I have tried the guide on http://msdn.microsoft.com/en-us/library/ee847423(VS.100).aspx but I am getting the ...
0
votes
1answer
65 views
how to configure the vs.net dsl's Rule dynamically
I want to configure the dsl's rule dynamically
control the RuleOn dynamically
[RuleOn(typeof(Entity),FireTime........]
add parameter to Rule with xml file
can I inheritance my ...
1
vote
1answer
935 views
T4 (Text Template Transformation Toolkit) for generating a set of types based on a list of basic types e.g. PointI32, PointF32 etc. in C#
Similar to http://stackoverflow.com/questions/2222849/boost-preprocessor-library-for-generating-a-set-of-types-based-on-a-list-of-basic I am asking how to generate:
struct Point##TYPE_SUFFIX_NAME
{
...
0
votes
1answer
140 views
Why is the 'Named Domain Class' tool missing in the DSL Designer category in the toolbox?
I have the Domain-Specific development with VS DSL Tools book by Cook, Jones, et.all
The book and various tutorials online mention a NamedDomainClass tool that should be present in the DSL Designer ...
0
votes
1answer
174 views
Parsing Documents with a DSL
I'm trying to come up with a way to go through about a million documents which are formal documents (for arguments sake, they are Thesis documents). They are not all standardized but close enough. ...
1
vote
1answer
106 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
103 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>
...
0
votes
1answer
142 views
Adding resources to solution explorer in experimental hive
I'm currently working on a project using DSL tools in Visual Studio 2008.
Is there a way to automatically add a resource into the solution explorer of the experimental hive at runtime? I'm creating ...
1
vote
2answers
364 views
Why is there no Project Item when Deploying VSIX?
We have a VS2010 Beta 2 DSL Project , We can build, deploy and test on our Development machines and all is well i.e When we go to 'Add New Item' we can select our DSL
When it comes to giving the VSIX ...
0
votes
1answer
72 views
How do you include ProjectItem when deploying DSL?
I am using Visual Studio 2010 Beta 2, I want to package and deploy my completed DSL along with the generated ProjectItem. I can see everything has been compiled correctly. I have my VSIX file but that ...
0
votes
1answer
511 views
Best Practice for Obfuscating a C# Visual Studio DSL Solution as VSIX
I was wondering if anyone has any advice for obfuscating a DSL?
Background - We have created a DSL which we will putting into the Visual Studio Gallery as a VSIX file.
We already use dotfuscator for ...
0
votes
2answers
139 views
What is the best IDE/GUI for my .NET DSL? [closed]
As a learning exercise I'm building a basic scientific computation environment based on .NET. I'd like the GUI of the app to be much like matlab, in that I have an interactive window, an objects ...
0
votes
1answer
72 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 ...
0
votes
1answer
426 views
Troubleshooting Plk Verification for Visual Studio Package in a VSIP Development Edition
I have a custom domain specific language project which was developed a while back, was deployed and run on the same machine inside the normal Visual Studio hive with no problems.
Server has been ...
0
votes
2answers
341 views
DSL Custom Constructor - only calling when created not loading
Info: VS2010, DSL Toolkit, C#
I have a custom constructor on one of my domain classes which adds some child elements. I have an issue as I only want this to run when the domain class element is ...
0
votes
1answer
77 views
Domain Property as Element and Hiding Default Value Properties
I have two questions
How do I achieve the following, I have a domain class called 'Property' - Property has two properties 'Type' and 'Value' it is currently being serialized as the following:
...
3
votes
3answers
832 views
Help with learning to use Irony for .net
I am trying to get up to speed with Irony. I keep seeing some terminology that I don't yet understand: terminals, non-terminals, token, state machine, Associativity, Abstract Syntax Tree.
Can someone ...
0
votes
2answers
317 views
DSL Add Root Element to Serialization
I am looking for help to achieve the following
The Diagram represents a car, users can add engine and colour
when I view the XML it looks like this:
<Car>
...
1
vote
1answer
279 views
How to fix blurred Icon Decorator on DSL Tools?
I faced this problem and after an extensive research I found its root cause and a workaround that can be useful for other people.
The icon decorator becomes "blurred" because its positioning on the ...
1
vote
3answers
452 views
What is the difference between “DSL Tools” and “Oslo”?
I've just started playing with domain-specific tools development, and I'm playing with Visual Studio SDK DSL Tools. However, I heard that Microsoft have another initiative into domain-specific ...
0
votes
1answer
418 views
Visual Studio DSL Tools and Server Explorer
Is it possible to enable users to drag and drop a Table from the Visual Studio Server Explorer onto my own DSL Diagram?
I can drop custom Domain Classes I have created but want to make use of the ...
1
vote
1answer
161 views
How to Dynamically Customize the Property Window
The on-line help for the Microsoft Visual Studio Domain-Specific Language (DSL) tools explains how to prevent domain properties from appearing in the properties window:
You can prevent domain ...
1
vote
2answers
1k views
DSL: from DSL rules into C# expressions
the question is maybe composite, let me expand it:
does it exists a designer (stub/framework/meta-designer) to create AND/OR based rules based on .NET object public bool properties? Saved as any ...
0
votes
1answer
383 views
How to nest shapes in a DSL Tools diagram?
I have a DSL containing two main domain classes: Area and Entity. Areas are represented visually by a GeometryShape, whereas entities are represented by a CompartmentShape. Entities can be embedded in ...
0
votes
5answers
1k 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, ...