What are the main advantages of switching to DLR for my scripting language? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T10:44:55Z http://stackoverflow.com/feeds/question/1038717 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1038717/what-are-the-main-advantages-of-switching-to-dlr-for-my-scripting-language 3 What are the main advantages of switching to DLR for my scripting language? Jason 2009-06-24T14:27:19Z 2009-06-24T14:30:55Z <p>I have written a DSL using Antlr to generate a lexer and parser from my grammar file. The parser generates an abstract syntax tree which contains various nodes (e.g. a function node) which I can calculate. In the code for the function nodes I take care of binding - checking function names and parameter types for matches from a library of functions. I have some simple caching here to optimize the function look up (if I call A+B with two ints then there is a strong chance the next time I use the plus operator it will be with 2 ints).</p> <p>Recently I have been reading about the DLR and it seems to be designed to accomodate this type of scripting language implementation. At first blush it doesnt look to me like it generates the parser or lexer but it seems it does assist with the other parts of the implementation. I was wondering what would be the main advantages to me of switching to using the DLR.</p> http://stackoverflow.com/questions/1038717/what-are-the-main-advantages-of-switching-to-dlr-for-my-scripting-language/1038730#1038730 2 Answer by Lou Franco for What are the main advantages of switching to DLR for my scripting language? Lou Franco 2009-06-24T14:28:38Z 2009-06-24T14:28:38Z <p>Full access to the .NET framework is the big one.</p> http://stackoverflow.com/questions/1038717/what-are-the-main-advantages-of-switching-to-dlr-for-my-scripting-language/1038747#1038747 2 Answer by Joel Coehoorn for What are the main advantages of switching to DLR for my scripting language? Joel Coehoorn 2009-06-24T14:30:44Z 2009-06-24T14:30:44Z <ul> <li>Access to the .Net base class library and types</li> <li>Access to third party libraries written for .Net</li> <li>You can let Microsoft worry about servicing the API (security updates, etc)</li> <li>You can host the language in Visual Studio</li> </ul> http://stackoverflow.com/questions/1038717/what-are-the-main-advantages-of-switching-to-dlr-for-my-scripting-language/1038748#1038748 3 Answer by Jon Skeet for What are the main advantages of switching to DLR for my scripting language? Jon Skeet 2009-06-24T14:30:55Z 2009-06-24T14:30:55Z <p>If you implement the binding carefully, the DLR will give you a very powerful caching mechanism - probably more heavily optimised than you'd be realistically able to do on your own. Also, you're more likely to get good interoperability with other languages, as you'll be using a "standard" dynamic object protocol.</p> <p>For example, C# 4 would be able to call into your language without any extra work, just by using the <code>dynamic</code> type. In order to do that without the DLR, you'd have to generate "normal" static CLR types.</p> <p>It's hard to know for sure how much advantage there'd be because we don't know what you want to use your language for, or how much it already does. However, there are obviously lots of very smart people working on the DLR - it seems to me that if you're creating a dynamic language to run on .NET, it would make sense to take advantage of their work.</p>