DLR doesn't work any more.
Id #11530 | Release:
None
| Updated: Feb 21 at 10:41 PM by mcandre | Created: Jan 28 at 2:59 PM by mcandre
c#
var runtime = Silverlight.DynamicEngine.CreateRuntime();
var python = runtime.GetEngine("python");
ScriptScope ss = python.CreateScope();
dynamic script = python.CreateSc...
Id #7475 | Release:
None
| Updated: Feb 21 at 10:41 PM by wangxh | Created: Oct 25, 2010 at 8:19 AM by wangxh
There appears to be a copy/paste bug in DefaultBinder.Operations.cs in MakeComparisonRule:
private DynamicMetaObject MakeComparisonRule(OperatorInfo info, OverloadResolverFactory resolverFact...
Id #6675 | Release:
None
| Updated: Feb 21 at 10:41 PM by jskaistis | Created: Jul 21, 2010 at 2:38 PM by jskaistis
The attached test case, (extracted from the tests cases I wrote when implementing the 3.5 System.Linq.Expressions in Mono), fails on .net 4.0 RC and with the latest DLR checkout, while it works on ...
Id #5867 | Release:
None
| Updated: Feb 21 at 10:41 PM by billchi | Created: Apr 6, 2010 at 4:52 PM by jbevain
<Thanks>dotneteer</Thanks>
I looked into the source code of Microsoft.Scripting.Debugging and have a better understanding of the problem. First of all, both LambdaWalker and DebugableLambdaBuilde...
Id #5029 | Release:
None
| Updated: Feb 21 at 10:41 PM by billchi | Created: Jan 4, 2010 at 6:18 PM by dinov
Microsoft.Scripting.ErrorSink now has had a second virtual overload of the Add() method to handle cases where a SourceUnit is not available.
The embedded derrived classes NullErrorSink and ErrorCo...
Id #4863 | Release:
1.0
| Updated: Feb 21 at 10:41 PM by billchi | Created: Dec 11, 2009 at 5:58 PM by BurtHarris
Attempting to work out .NET binding for property gets, I've encountered an System.Diagnostics assertion failure in DefaultOverloadResolver. I'll attach a unit-test class FooTest that reproduces th...
Id #4830 | Release:
1.0
| Updated: Feb 21 at 10:41 PM by billchi | Created: Dec 8, 2009 at 1:33 AM by BurtHarris
In the default configuration, ScriptRuntime.CreateFromConfiguration() throws an exception tht no engines have been configured. This is a counter-intuitive place for the error, many simple hosting...
Id #4829 | Release:
None
| Updated: Feb 21 at 10:41 PM by billchi | Created: Dec 7, 2009 at 7:36 PM by BurtHarris
<Thanks>David Miller</Thanks>
class Dummy
{
public int m1(int x) { return x; }
public int m1(ref int x) { x = x+1; return x; }
}
Dummy dummy = new Dummy();
...
Id #4802 | Release:
1.0
| Updated: Feb 21 at 10:41 PM by billchi | Created: Dec 3, 2009 at 8:48 PM by dinov
Ast.Loop(
Ast.Block(new[] { closure_var },
Ast.Call(list_var, typeof(List<Func<int>>).GetMethod("Add"), Ast.Lambda<Func<int>>(closure_var)),
Ast.PostIncrementAssign(closure_var),
AstUti...
Id #3909 | Release:
None
| Updated: Feb 21 at 10:41 PM by rcollina | Created: Sep 3, 2009 at 1:00 AM by TomasMatousek