active questions tagged dlr - Stack Overflowmost recent 30 from stackoverflow.com2009-12-11T21:53:06Zhttp://stackoverflow.com/feeds/tag/dlrhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1360097/dlr-return-type1DLR return typeAbdElRaheim2009-09-01T00:55:59Z2009-12-11T09:27:38Z
<p>hi. I need some DLR help. I am implementing an IDynamicMetaObjectProvider and DynamicMetaObject but I am having some issues getting the expected return type. I am overiding BindInvokeMember in the metaobject, I can see all the args types but no return type. Anyone know how I get to it if possible? I know the return type is dynamic but what if the thing you are invoking is dependent on a return type. I don't know which action to perform in the DynamicMetaObject unless I know the return type the consumer is expecting.</p>
<h2><strong>Update Two</strong> </h2>
<p>I cant paste my actual code here since it calls all kinds of work stuff. Some sample dynamic object code is below. </p>
<pre><code>public class TestDynamicMetaObject : DynamicMetaObject
{
public TestDynamicMetaObject(Expression expression, object value)
: base (expression, BindingRestrictions.Empty, value)
{
}
public override DynamicMetaObject BindInvokeMember(InvokeMemberBinder binder, DynamicMetaObject[] args)
{
Delegate method = new Func<int>(Test);
return new DynamicMetaObject(
Expression.Call(method.Method),
BindingRestrictions.GetInstanceRestriction(Expression,Value),
Value
);
}
public static int Test()
{
return 10;
}
}
public class TestDynamicObject : IDynamicMetaObjectProvider
{
DynamicMetaObject IDynamicMetaObjectProvider.GetMetaObject(Expression parameter)
{
return new TestDynamicMetaObject(parameter, this);
}
}
</code></pre>
<p>Here is where I am using.</p>
<pre><code>static void Main(string[] args)
{
try
{
dynamic x = new TestDynamicObject();
int gg= x.Test();
Console.WriteLine(gg);
}
catch (Exception excep)
{
Console.WriteLine(excep);
}
Console.ReadLine();
}
</code></pre>
<p>Here is the code that the compiler creates.</p>
<pre><code>private static void Main(string[] args)
{
try
{
object x = new TestDynamicObject();
if (<Main>o__SiteContainer0.<>p__Site1 == null)
{
<Main>o__SiteContainer0.<>p__Site1 = CallSite<Func<CallSite, object, int>>.Create(new CSharpConvertBinder(typeof(int), CSharpConversionKind.ImplicitConversion, false));
}
if (<Main>o__SiteContainer0.<>p__Site2 == null)
{
<Main>o__SiteContainer0.<>p__Site2 = CallSite<Func<CallSite, object, object>>.Create(new CSharpInvokeMemberBinder(CSharpCallFlags.None, "Test", typeof(Program), null, new CSharpArgumentInfo[] { new CSharpArgumentInfo(CSharpArgumentInfoFlags.None, null) }));
}
Console.WriteLine(<Main>o__SiteContainer0.<>p__Site1.Target(<Main>o__SiteContainer0.<>p__Site1, <Main>o__SiteContainer0.<>p__Site2.Target(<Main>o__SiteContainer0.<>p__Site2, x)));
}
catch (Exception excep)
{
Console.WriteLine(excep);
}
Console.ReadLine();
}
</code></pre>
http://stackoverflow.com/questions/1833700/il-clr-dlr-references1IL / CLR / DLR References?Donnie2009-12-02T15:39:44Z2009-12-10T11:36:57Z
<p>I'm wanting to learn more about IL and CLR / DLR under the hood. A friend of mine recommended the book "Inside Microsoft .NET IL Assembler", but since it came out in 2002 I fear it's pretty out of date at this point.</p>
<p>Does anyone have any more up-to-date books or websites that can be used by someone who understands .NET languages to learn more about the inner workings of IL and the CLR?</p>
http://stackoverflow.com/questions/1872264/overview-of-dlr1overview of DLR?RCIX2009-12-09T07:47:58Z2009-12-09T07:51:32Z
<p>I'm looking for a high level overview of how one goes from an AST to working code via the DLR, does anyone have (a link for) something like that? </p>
http://stackoverflow.com/questions/1852897/ironpython-compile-time-checks-against-clr-libraries3IronPython compile-time checks against CLR libraries?Mike Gates2009-12-05T17:51:34Z2009-12-08T11:43:13Z
<p>I know that IronPython is a dynamically typed language so what I am asking sounds pretty stupid, but is it possible to do something with an IronPython script to make sure the changing of the CLR libraries it references will not result in a runtime error when the script is executed?</p>
<p>The reason I ask is that I have written a library referenced by IronPython scripts in C#, and I want a way to know if I've broken any of the interfaces used by the IronPhon scripts when I change the C# library. This is easy to do with another C# project by just compiling the code and seeing compile errors, but this doesn't seem to work when compiling the IronPython scripts.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/283143/can-i-implement-methodmissing-in-c-4-and-have-it-actually-return-a-value4Can I implement method_missing in C# 4 and have it actually return a value?ignu2008-11-12T05:57:46Z2009-12-07T02:42:28Z
<p>I was trying to figure out how to implement method_missing in C# 4, based on all of 2 blog posts floating around on IDynamicObject. </p>
<p>What I want to do is have a Business Logic Layer that has a Repository, and if the method is missing from the Business Logic Layer, just call the Repository and pass through its result. So i have a class that looks like this:</p>
<pre><code>public class CustomerServices : IDynamicObject
{
protected CustomerRepository _Repository = new CustomerRepository();
MetaObject IDynamicObject.GetMetaObject(Expression parameter)
{
return new RepositoryMetaObject<CustomerRepository>(_Repository, parameter);
}
}
</code></pre>
<p>In RepositoryMetaObect I implement the Call method like so:</p>
<pre><code> public override MetaObject Call(CallAction action, MetaObject[] args)
{
typeof(T).GetMethod(action.Name).Invoke(_Repository, getParameterArray(args));
return this;
}
</code></pre>
<p>(The rest of RepositoryMetaObject code probably isn't interesting, but I've included it here: <a href="http://pastie.org/312842" rel="nofollow">http://pastie.org/312842</a>)</p>
<p>The problem I think is that I'm never doing anything with the result of the Invoke, I'm just returning the MetaObject itself. </p>
<p>Now when I do this:</p>
<pre><code> dynamic service = new CustomerServices();
var myCustomer = service.GetByID(1);
</code></pre>
<p>GetByID is called, but if I try to access a property on myCustomer, is just hangs. </p>
<p>Can anyone please help?</p>
<p>Complete code can be downloaded ehre: https://dl.getdropbox.com/u/277640/BusinessLogicLayer.zip</p>
http://stackoverflow.com/questions/1840492/wpf-app-hosting-executing-ruby-code-via-ironruby0WPF App hosting/executing Ruby code via IronRuby Becky Franklin2009-12-03T15:12:44Z2009-12-03T16:25:55Z
<p>Hey folks, hoping you can help me get started with IronRuby. I have several Ruby scripts that I want to execute from my WPF Application (due to the use of several RMagick methods I can't get natively) and I can't find any good info on what references I need in the project. </p>
<p>I've installed IronRuby and tried adding Microsoft.Scripting and .Core but the app complains that I have no Sub Main method - can IronRuby be used in a non-console app?</p>
<p>Thanks,
Becky</p>
http://stackoverflow.com/questions/1839101/ironruby-isa-with-datetime0IronRuby is_a with DateTimeSergey Mirvoda2009-12-03T10:38:12Z2009-12-03T11:22:21Z
<p>Can anybody explain why DateTime in IronRuby is Object[]
sample code</p>
<pre><code>IronRuby 0.9.1.0 on .NET 2.0.50727.4927
Copyright (c) Microsoft Corporation. All rights reserved.
>>> require 'System'
=> true
>>> t = System::DateTime.Now
=> Thu Dec 03 15:32:42 +05:00 2009
>>> t.is_a?(Time)
=> true
>>> t.is_a?(System::DateTime)
=> true
>>> t.is_a?(System::Object)
=> true
>>> t.is_a?(System::Object[])
=> true
>>> t.is_a?(System::Decimal)
=> false
</code></pre>
http://stackoverflow.com/questions/1835912/how-do-i-express-a-void-method-call-as-the-result-of-dynamicmetaobject-bindinvoke10How do I express a void method call as the result of DynamicMetaObject.BindInvokeMember?Jon Skeet2009-12-02T21:22:27Z2009-12-02T23:21:51Z
<p>I'm trying to give a short example of <a href="http://msdn.microsoft.com/en-us/library/system.dynamic.idynamicmetaobjectprovider%28VS.100%29.aspx" rel="nofollow"><code>IDynamicMetaObjectProvider</code></a> for the second edition of C# in Depth, and I'm running into issues.</p>
<p>I want to be able to express a void call, and I'm failing. I'm sure it's possible, because if I dynamically call a void method using the reflection binder, all is fine. Here's a short but complete example:</p>
<pre><code>using System;
using System.Dynamic;
using System.Linq.Expressions;
class DynamicDemo : IDynamicMetaObjectProvider
{
public DynamicMetaObject GetMetaObject(Expression expression)
{
return new MetaDemo(expression, this);
}
public void TestMethod(string name)
{
Console.WriteLine(name);
}
}
class MetaDemo : DynamicMetaObject
{
internal MetaDemo(Expression expression, DynamicDemo demo)
: base(expression, BindingRestrictions.Empty, demo)
{
}
public override DynamicMetaObject BindInvokeMember
(InvokeMemberBinder binder, DynamicMetaObject[] args)
{
Expression self = this.Expression;
Expression target = Expression.Call
(Expression.Convert(self, typeof(DynamicDemo)),
typeof(DynamicDemo).GetMethod("TestMethod"),
Expression.Constant(binder.Name));
var restrictions = BindingRestrictions.GetTypeRestriction
(self, typeof(DynamicDemo));
return new DynamicMetaObject(target, restrictions);
}
}
class Test
{
public void Foo()
{
}
static void Main()
{
dynamic x = new Test();
x.Foo(); // Works fine!
x = new DynamicDemo();
x.Foo(); // Throws
}
}
</code></pre>
<p>This throws an exception:</p>
<blockquote>
<p>Unhandled Exception:
System.InvalidCastException: The
result type 'System.Void' of the
dynamic binding produced by the object
with type 'DynamicDemo' for the binder
'Microsoft.CSharp.RuntimeBinder.CSharpInvokeMemberBinder'
is not compatible with the result type 'System.Object' expected by the
call site.</p>
</blockquote>
<p>If I change the method to return object and return null, it works fine... but I don't want the result to be null, I want it to be void. That works fine for the reflection binder (see the first call in Main) but it fails for my dynamic object. I want it to work like the reflection binder - it's fine to call the method, so long as you don't try to use the result.</p>
<p>Have I missed a particular kind of expression I can use as the target?</p>
http://stackoverflow.com/questions/1821866/ironruby-and-handling-xaml-ui-events0IronRuby and Handling XAML UI EventsB. Tyndall2009-11-30T19:26:20Z2009-12-01T07:48:33Z
<p>What it is the most brief and concise way of adding event handlers to UI elements in XAML via an IronRuby script? Assumption: the code to add the event handler would be written in the IronRuby script and the code to handle the event would be in the same IronRuby script.</p>
<p>I'd like the equivalent of the following code but in IronRuby. Handling a simple button1 click event.</p>
<pre><code>public partial class Window1 : Window
{
public Window1()
{
InitializeComponent();
button1.Click += new RoutedEventHandler(button1_Click);
}
void button1_Click(object sender, RoutedEventArgs e)
{
MessageBox.Show("Hello World!");
}
}
</code></pre>
http://stackoverflow.com/questions/937351/can-jscript-net-be-used-to-script-a-net-application6Can JScript.NET be used to script a .NET application?James Hugard2009-06-01T23:53:58Z2009-12-01T04:40:05Z
<p>Since MS <a href="http://stackoverflow.com/questions/775339/where-can-you-download-managed-jscript-for-the-dlr/886173#886173">appears to have killed Managed JavaScript in the latest DLR</a> for both server-side (ASP.NET Futures) and client-side (Silverlight), has anyone successfully used non-obsolete APIs to allow scripting of their application objects with JScript.NET and/or can explain how to do so? A Mono/JScript solution might also be acceptable, if it is stable and meets the requriements below.</p>
<p>We are interested in upgrading off of a script host which uses the Microsoft JScript engine and ActiveScript APIs to something with more performance and easier extensibility. We have over 16,000 server-side scripts weighing in at over 42MB of source, so rewriting into another scripting language is out of the question.</p>
<p>Our specific requirements are:</p>
<ul>
<li>Noteably better performance than the Microsoft JScript (ActiveScript) engine
<ul>
<li>Better runtime performance and/or</li>
<li>Retention of pre-parsed or compiled scripts (don't reparse on every run)</li>
<li>Lower or equal memory consumption</li>
</ul></li>
<li>Full ECMA-262 ECMAScript compatibility
<ul>
<li>a little porting can be tolerated</li>
</ul></li>
<li>Injection of custom objects into the script namespace
<ul>
<li>.NET objects (not a hard requirement)</li>
<li>COM objects or COM objects wrapped in .NET</li>
</ul></li>
<li>Instantiation of COM objects from Script
<ul>
<li>à la "new ActiveXObject(progid)"</li>
<li>Low priority given the preceeding</li>
</ul></li>
<li>Include files
<ul>
<li>Pre-loading of "helper scripts" into a script execution context</li>
<li>An "include" function or statement (easy to create, given the above)</li>
</ul></li>
<li>Support for code at global-scope
<ul>
<li>Execution of code the global scope</li>
<li>Retention of values initialized at global scope</li>
<li>Extraction of values from the global scope</li>
<li>Injection and replacement of values at the global scope</li>
</ul></li>
<li>Calling of script-defined functions
<ul>
<li>with parameters</li>
<li>and with access to the previously initialized global scope</li>
</ul></li>
<li>Source-level debugging</li>
<li>Commercial or Open Source Support</li>
<li>Non-obsolete APIs</li>
</ul>
http://stackoverflow.com/questions/1794713/dlr-defaultbinder-available-for-use-in-silverlight0DLR DefaultBinder available for use in Silverlight?JoshL2009-11-25T04:52:52Z2009-11-30T16:14:49Z
<p>I'd like to use the Codeplex DefaultBinder from within a Silverlight-deployed DLR project (my own custom language implementation).</p>
<p>Is that possible? Is the DefaultBinder compatible with Silverlight 3 and/or 4?</p>
http://stackoverflow.com/questions/1797516/how-do-i-implement-intellisense-support-for-a-custom-dlr-language-in-vs20082How do I implement intellisense support for a custom DLR language in VS2008?ArnieZ2009-11-25T15:02:30Z2009-11-26T09:21:58Z
<p>I have just started writing my first language for the .NET DLR.</p>
<p>I would like to know if it is possible to extend Visual Studio 2008 IntelliSense to handle the syntax of a custom DLR language?</p>
<p><strong>EDIT:</strong> I have decided to bypass VS2008 and target VS2010 instead. See accepted answer for more information.</p>
http://stackoverflow.com/questions/1772824/reasons-for-using-a-dlr-based-language-rather-than-c-for-scripting-tasks1Reasons for using a DLR-based language rather than C# for scripting tasks?Dave2009-11-20T19:49:51Z2009-11-20T20:56:28Z
<p>I'm considering embedding a scripting language into one of my software projects and have identified two options: compiling C# at run-time via CodeDOM and embedding a DLR-based scripting language. Both options would give me full access to the .NET Framework.</p>
<p>The operation that I'd be scripting would be a user-defined transformation of a DataRow and a set of metadata resulting in a modified DataRow. I expect these transforms will be composable and frequently invoked. Of course, I expect the transforms to be provided and modifiable by the end-user.</p>
<p>With this workload in mind, are there any clear advantages to using one approach over another?</p>
http://stackoverflow.com/questions/415654/expression-dynamic-and-operators-assign0Expression.Dynamic and Operators.Assign?JoshL2009-01-06T06:46:39Z2009-11-07T12:04:24Z
<p>I'm trying to use Expression.Dynamic() to build an assignment operation... I want to use this to selectively offer value type semantics to certain custom type instances in my language. I can't do this with a "static" (?) Expression because I don't know what the actual type is (I need the MetaObject instance and its LimitType... hence Expression.Dynamic() ).</p>
<p>This isn't working for me... Expression.Assign() does nothing if used to build a MetaObject from my OperationBinder subclass.</p>
<p>Head. Pounding. On. Desk. For. Hours.</p>
<p>Just wondering if this is a supported behavior, or if I'm barking up the wrong tree?</p>
<p>Thanks...</p>
http://stackoverflow.com/questions/1547763/embedding-ironscheme-in-a-c-app2Embedding IronScheme in a C# appLucas Jones2009-10-10T11:55:59Z2009-11-02T04:52:03Z
<p>I'm trying to add a plugin architecture to my C# app. I've chosen <a href="http://codeplex.com/ironscheme" rel="nofollow">IronScheme</a> as the language, and also because it's built on the DLR, which should make it easier to embed.</p>
<p>On the Codeplex Wiki, they have the <a href="http://ironscheme.codeplex.com/Wiki/View.aspx?title=EmbedIronScheme&referringTitle=Home" rel="nofollow">following example</a>.
I changed it slightly:</p>
<pre><code>public class PluggerInner
{
IScriptEngine scheme;
public PluggerInner()
{
InitScheme();
}
private void InitScheme()
{
var domMgr = ScriptDomainManager.CurrentManager;
var schemePrv = new IronSchemeLanguageProvider(domMgr);
scheme = schemePrv.GetEngine();
}
public void RunSchemePlugin(string fileName)
{
scheme.ExecuteFile(fileName);
}
public void RunPlugins()
{
foreach (var fl in new DirectoryInfo("../../plugins").GetFiles())
{
if (fl.Extension == ".ss")
{
RunSchemePlugin(fl.FullName);
}
}
}
}
</code></pre>
<p>(This is executed basically as <code>new PluggerInner().RunPlugins()</code>)</p>
<p>It finds my example <code>.ss</code> file in the directory (yes, I know I shouldn't use <code>../..</code>), but throws a <em>massive</em> error on this line:</p>
<pre><code>scheme.ExecuteFile(fileName);
</code></pre>
<p>The exception I get is:</p>
<pre>
IronScheme.Runtime.R6RS.CompoundCondition was unhandled
Source="IronScheme"
StackTrace:
at IronScheme.Runtime.R6RS.Exceptions.Raise(Object obj)
at IronScheme.Runtime.R6RS.Exceptions.RaiseContinueable(Object obj)
at IronScheme.Runtime.Builtins.UndefinedError(Object sym)
at IronScheme.IronSchemeLanguageContext.MissingName(SymbolId name)
at Microsoft.Scripting.ModuleGlobalWrapper.GetCachedValue()
at Microsoft.Scripting.ModuleGlobalWrapper.get_CurrentValue()
at hello.Initialize(CodeContext )
at Microsoft.Scripting.ScriptCode.Run(CodeContext codeContext, Boolean tryEvaluate)
at Microsoft.Scripting.ScriptModule.Execute()
at Microsoft.Scripting.Hosting.ScriptEngine.ExecuteFile(String path)
at ExEdit.PluggerInner.RunSchemePlugin(String fileName) in D:\VSProjects\ExEdit\Infra.cs:line 35
at ExEdit.PluggerInner.RunPlugins() in D:\VSProjects\ExEdit\Infra.cs:line 44
at ExEdit.MainForm.MainForm_Load(Object sender, EventArgs e) in D:\VSProjects\ExEdit\MainForm.cs:line 22
at System.Windows.Forms.Form.OnLoad(EventArgs e)
at System.Windows.Forms.Form.OnCreateControl()
at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
at System.Windows.Forms.Control.CreateControl()
at System.Windows.Forms.Control.WmShowWindow(Message& m)
at System.Windows.Forms.Control.WndProc(Message& m)
at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
at System.Windows.Forms.ContainerControl.WndProc(Message& m)
at System.Windows.Forms.Form.WmShowWindow(Message& m)
at System.Windows.Forms.Form.WndProc(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
at System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
at System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
at System.Windows.Forms.SafeNativeMethods.ShowWindow(HandleRef hWnd, Int32 nCmdShow)
at System.Windows.Forms.Control.SetVisibleCore(Boolean value)
at System.Windows.Forms.Form.SetVisibleCore(Boolean value)
at System.Windows.Forms.Control.set_Visible(Boolean value)
at System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
at System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
at System.Windows.Forms.Application.Run(Form mainForm)
at ExEdit.Program.Main() in D:\VSProjects\ExEdit\Program.cs:line 18
at System.AppDomain._nExecuteAssembly(Assembly assembly, String[] args)
at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
at System.Threading.ThreadHelper.ThreadStart()
InnerException:
</pre>
<p>My example Scheme code:</p>
<pre><code>(define (test) (+ 1 1))
</code></pre>
<p>I have no idea what the exception is actually talking about, as it has no InnerException.</p>
http://stackoverflow.com/questions/987176/overload-resolution-in-c-4-0-using-dynamic-types3Overload Resolution in C# 4.0 using dynamic typesLBushkin2009-06-12T15:09:46Z2009-10-30T12:43:50Z
<p>I don't have access to the C# 4.0 preview yet. But I am curious, what does the C# 4.0 runtime do when invoking an overloaded method in the following case. Does it resolve to the generic overload ... or the specialized overload.</p>
<pre><code>public class Foo<T>
{
protected string BarImpl( T value ) { return "Bar(T) says: " + value.ToString(); }
protected string BarImpl( int value ) { return "Bar(int) says: " + value.ToString(); }
public string Bar( T value )
{
dynamic foo = this;
return foo.BarImpl( value );
}
}
public static void Main( string args[] )
{
var f = new Foo<int>();
Console.WriteLine( f.Bar( 0 ) );
}
</code></pre>
http://stackoverflow.com/questions/1627563/avoiding-unnecessary-boxing-in-dlr0Avoiding unnecessary boxing in DLRDrJokepu2009-10-26T21:56:42Z2009-10-27T02:14:28Z
<p>I'm playing with DLR to get a better understanding of it. I'm not completely familiar yet with all its concepts and its terminology so sorry for any terminological or conceptual mistakes in my question.</p>
<p>Basically, the way I understand it is that you pass around objects in expression trees but you use binders in order to expose your objects' dynamic functionality to other DLR-aware languages. So instead of doing an addition, for example, directly in the expression tree (With Expression.Add), you create a binder that is invoked by the call site whenever it is needed and does the addition for you.</p>
<p>However, since you pass objects around, at the end of the addition operation (if the operands are, for example, two Int32 values) you will have to box the resulting Int32 to an object since (still in the binder) that what the call site expects. I'm a bit afraid that this constant boxing / unboxing might affect the performance of the runtime somewhat.</p>
<p>Is this really how it is supposed to work (with all the boxing / unboxing) or am I missing something?</p>
http://stackoverflow.com/questions/1072727/are-there-any-net-clr-dlr-implementations-of-ecmascript4Are there any .NET CLR/DLR implementations of ECMAScript?McKAMEY2009-07-02T06:01:33Z2009-10-26T15:47:13Z
<p>Does anyone know of <em>real</em> (i.. no vaporware) implementations of ECMAScript targeting the <strong>.NET CLR/DLR</strong>? Ideally something like <strong>what Rhino is for Java</strong>. A solid port of Rhino running on .NET Framework / Mono Framework would be perfect.</p>
<p>I've only seen a handful of projects mentioned but never seen any come to light or in reality anything that I've ever been able to run script on. Here's what I know about already:</p>
<ul>
<li><p><strong><a href="http://msdn.microsoft.com/en-us/library/hbxc2t98%28VS.85%29.aspx" rel="nofollow">MSScriptControl ActiveX Control</a></strong>: AFAIK, this was Microsoft's last real ECMAScript-compliant implementaiton (runs JScript 5.7). I've integrated with MSScriptControl but don't consider COM interop to be an answer to this question. x64 is a killer for this option.</p></li>
<li><p><strong><a href="http://www.west-wind.com/WebLog/posts/10688.aspx" rel="nofollow">JScript.NET</a></strong>: I don't count JScript.NET as it could never successfully parse any of my real scripts. It seems to have trouble with closures.</p></li>
<li><p><strong><a href="http://en.wikipedia.org/wiki/JScript#Managed%5FJScript" rel="nofollow">Managed JScript</a></strong>: Sounds like what I want but it appears to be dead in the water. It was a major example implementation for the DLR but then got entangled with SilverLight and seems to have faded as a priority since 2007. Creditable sources on the status of this would be helpful.</p></li>
<li><p><strong><a href="http://myjscript.codeplex.com/" rel="nofollow">MyJScript</a></strong>: Built as a tutorial implementation for the DLR. Anyone know how complete of an implementation this is?</p></li>
<li><p><strong><a href="http://jint.codeplex.com/" rel="nofollow">Jint</a></strong>: JavaScript interpreter for .NET. <strike>Doesn't as of yet support Currying or <code>try</code>-<code>catch</code>-<code>finally</code>.</strike></p></li>
<li><p><strong><a href="http://www.remobjects.com/roscript.aspx" rel="nofollow">RemObjects Script for .NET</a></strong>: An interesting contender still in the works. I'm confused by their marketing as to what it will actually be, but it sounds like it might eventually be a fit. If anyone knows more about it that would be helpful as well.</p></li>
<li><p><strong><a href="http://stackoverflow.com/questions/356948/referencing-googles-v8-engine-from-a-net-app">V8 for .NET</a></strong>: This would be great if someone ported V8 to .NET. As far as I know there isn't a large effort around this either. The link is to an idea for calling into it from a managed C++ wrapper.</p></li>
</ul>
<p>For background, I want to be able to execute JavaScript from within .NET; i.e. load up a set of scripts into context and call into that context and retrieve the execution results. Currently I jump through hoops to use MSScriptControl via cumbersome COM Interop. The inconsistency of COM makes it really tough for deployment and ensuring consistent execution.</p>
<p>I'd like to be able to execute reasonably complex JavaScript test harnesses from within .NET. This isn't for creating user macros or simple tiny scripts; I need a real JavaScript environment like Rhino. If the implementation was running on top of the CLR (rather than COM) this would really help with some of the current issues.</p>
http://stackoverflow.com/questions/1548172/base-a-small-expression-dsl-on-the-dlr-or-keep-it-hand-rolled-in-f3Base a small expression DSL on the DLR or keep it hand-rolled in F#?Rickard2009-10-10T15:00:04Z2009-10-10T20:43:13Z
<p>I'm building a spreadsheet-like application, where a lot of small calculations needs to be stitched together in a tree-structure. These calculations are user-defined and I need a way for the user to enter them at runtime.</p>
<p>My current approach is to write a small "expression DSL" in F#, where I parse the input with FParsec, build a syntax tree based on a discriminated union and then can evaluate the expression. This works pretty well.</p>
<p>However, I'm thinking of looking in to basing the language on the DLR instead. Are there any upsides to go down this road (parse the input, generate the AST using the Scripting.AST stuff instead of my own, and let the DLR handle the execution of the calculation)?</p>
<p>Each calculation will probably be pretty small. The dependency between the calculations will be taken care of on a higher level.</p>
<p>Can I expect better performance since the DLR will generate CIL code for the expression or will the overhead eat that up?</p>
<p>(as for using an existing language like IronPython, it will probably be hard since I'm planning to add a lot of slice-and-dice operators and dimensionality-handling stuff to the language syntax)</p>
http://stackoverflow.com/questions/831526/is-dlr-0-9-supported-by-microsoft-in-a-production-environment2Is DLR 0.9 supported by Microsoft in a production environmentAdrian Stoica2009-05-06T20:15:12Z2009-10-04T14:28:48Z
<p>I know that DLR will be released together with C# 4.0, but I don't know when that will happen. In the meantime if somebody wants to use DLR in a production environment (nothing hardware-real-time-system), should he/she consider postponing it until C# 4.0 comes out? </p>
<p>What I'm asking: is the existing version 0.9 supported by Microsoft?</p>
http://stackoverflow.com/questions/1448643/resources-to-learn-how-to-create-a-compiler-interpreter-for-the-net-framework0Resources to learn how to create a compiler /interpreter for the .NET framework.Vadim2009-09-19T14:25:58Z2009-09-23T20:20:18Z
<p>I'd like to learn more how to create a language for .NET framework. I think I'd like to build a DLR language. I'm having hard time founding good resources. I found <a href="http://msdn.microsoft.com/en-us/magazine/cc136756.aspx" rel="nofollow">a descent article on MSDN</a> that was written more than a year ago. I also spent couple of hours looking at IronPython source code.</p>
<p>Could you please share with your resources on this subject.</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1411638/ironruby-net-4-0-question-marks-and-exclamations-at-the-end-of-method-names3IronRuby - .NET 4.0 - Question Marks and Exclamations at the End of Method NamesB. Tyndall2009-09-11T15:31:25Z2009-09-11T15:53:42Z
<p>Just curious how is the .NET 4.0 CLR world going to call methods ending in question marks and exclamations? What will the syntax look like calling from C# or VB.NET?</p>
http://stackoverflow.com/questions/1083539/does-the-dlr-or-better-iron-python-run-in-silverlight0Does the DLR or better Iron Python run in Silverlight?tellingmachine2009-07-05T06:06:55Z2009-09-10T07:13:26Z
<p>Does the DLR or even better Iron Python run in Silverlight?</p>
http://stackoverflow.com/questions/689407/can-i-ship-an-open-source-dll-that-is-built-using-iron-ruby0Can I ship an open source dll that is built using iron ruby?Sam Saffron2009-03-27T11:34:25Z2009-08-26T17:12:52Z
<p>Yes .... </p>
<p>Technically ... what is involved in <a href="http://research.microsoft.com/en-us/people/mbarnett/ilmerge.aspx" rel="nofollow">ILMerging</a> the <a href="http://dlr.codeplex.com/" rel="nofollow">DLR</a> and <a href="http://www.ironruby.net/" rel="nofollow">Iron Ruby</a> into a single DLL? What should I be careful about? </p>
<p>Legally (<a href="http://dlr.codeplex.com/license" rel="nofollow">MS-PL</a>) ... am I allowed to ship an open source dll that had iron ruby and the DLR embedded into it? (Looks like the answer to this question is, usually yes, what OS licenses is ms-pl compatible with?)</p>
http://stackoverflow.com/questions/1300265/how-to-import-static-class-or-static-method-into-ironpython-or-dlr-using-c-c1How to import static class (or static method) into IronPython (or DLR) using C# code(not python)?Boolean2009-08-19T14:15:55Z2009-08-19T17:20:49Z
<p>scope.SetVariable("math", ?? typeof(System.Math) ??);</p>
<p>or do I need create a module?</p>
http://stackoverflow.com/questions/1184360/powershell-runspace-vs-dlr3PowerShell Runspace vs DLRalastairs2009-07-26T11:39:49Z2009-07-26T17:23:46Z
<p>With the .NET 4.0 beta now available, and thus the wider availability of the .NET Dynamic Language Runtime, I guess these kinds of topics are going to become "hotter". </p>
<p>I'm confused about the conceptual differences between the DLR and PowerShell. It seems to me that if I want to provide scripting capabilities in my .NET app, I can use the DLR (and so enable scripting in IronPython or IronRuby, or whatever other Iron* languages are available for the DLR), or host a PowerShell Runspace. </p>
<p>What are the pros and cons of each method? Why might I choose one over the other? As a dynamic language itself, and a first-class .NET language at that, why doesn't PowerShell also target the DLR?</p>
http://stackoverflow.com/questions/1096432/is-it-possible-to-halt-a-running-dlr-ironpython-ironruby-script2Is it possible to halt a running DLR/IronPython/IronRuby scriptsipwiz2009-07-08T06:39:17Z2009-07-10T00:14:59Z
<p>I have an application that executes user generated IronRuby scripts where each thread executes on its own thread. The issue I have is that certain events can occur that require the IronRuby script to be stopped at an arbitrary point in the script. </p>
<p>I can do it by aborting the thread the script is running on but that approach has introduced a memory leak into the application. After many months of investigation I have not been able to rectify except by scheduling automatic restarts of the application process. Consequently I am keen to move away from the use of Thread.Abort.</p>
<p>Is there any way to halt an IronRuby script from outside of the script? </p>
<p>The only other idea I can think of is to split each user's script into separate lines and insert a new line after the each script line that checks whether the script should halt but that is bound to introduce syntax errors.</p>
http://stackoverflow.com/questions/999689/execution-jscript-in-silverlight-application0Execution JScript in SilverlIght ApplicationDarrin2009-06-16T05:14:43Z2009-07-04T18:26:18Z
<p>Hello!<br />
I try to make scriptable application using Silverlight DLR. When I try execute JScript code which contains two or more lines of code, execution only first line. For example:
I had Compiled SL application written on ะก#. Main page contains Label named "lblMessage" and Button with Click event handler. </p>
<pre><code>private void Button_Click(object sender, RoutedEventArgs e)
{
ScriptRuntime scriptRuntime = ScriptRuntime.Create();
foreach (string name in new string[] { "mscorlib", "System", "System.Windows", "System.Windows.Browser", "System.Net" })
{
scriptRuntime.LoadAssembly( scriptRuntime.Host.PlatformAdaptationLayer.LoadAssembly(name) );
}
ScriptEngine scriptEngine = scriptRuntime.GetEngine("js");
ScriptScope baseScope = scriptEngine.CreateScope();
gsFormManager fm = gsApplicationManager.FormManager;
baseScope.SetVariable("lblMessage", lblMessage);
string script = "lblMessage.Text = 'First line of code';\r\n" + "lblMessage.Text = 'Second line of code'";
ScriptSource scriptSource = scriptEngine.CreateScriptSourceFromString(script);
CompiledCode compiledCode = scriptSource.Compile();
compiledCode.Execute(baseScope);
}
</code></pre>
<p>After execution Label.Text will be equal "First line of code" string.</p>
<p>Why ignored second line of code ?</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1070573/how-to-use-dlr-with-mef-in-net-4-02How to use DLR with MEF in .Net 4.0?Sergey Aldoukhov2009-07-01T18:12:24Z2009-07-02T18:08:34Z
<p>There were promises from the MEF team that MEF will support DLR plugins in the .Net 4.0. Did it happen already and I can [Import] some IronPython objects?</p>
<p>If yes, any links to the topic would be helpful.</p>
http://stackoverflow.com/questions/1038717/what-are-the-main-advantages-of-switching-to-dlr-for-my-scripting-language3What are the main advantages of switching to DLR for my scripting language?Jason2009-06-24T14:27:19Z2009-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>