Is there anything in .NET that allows me to define a grammar and generate a programming language?

Posted by user1525474 on Programmers See other posts from Programmers or by user1525474
Published on 2012-10-15T19:16:57Z Indexed on 2012/10/15 21:48 UTC
Read the original article Hit count: 170

Filed under:
|

I have a course in which the proffesor has asked us to create a DSL for a our final project. He presented us in the first courses xText with Eclipse. This being a new course, I am still a bit fuzzy on what Domain Specific Languages means.

This is my current understanding: a domain specific language is a language that is created for specific problems in software development. Examples of DSL's are PHP, SQL, JavaScript and on the opposite are languages like Java , C# , C++ , Ruby etc.

Please feel free to correct me if I am wrong.

What I would like to know: is there is any tool for .NET/Visual Studio that is similar to Xtext, that allows me to define a grammar and be allowed to generate a programming language based on that with an activity diagram?

© Programmers or respective owner

Related posts about .NET

Related posts about dsl