scriptsharp
scriptsharp copied to clipboard
Dictionary<T,Action<*>> will not generate correct javascript when invoked.
It compiles fine but generates the wrong javascript.
Setup:
Dictionary<string,Action<object>> foo=new Dictionary<string,Action<object>>();
foo["test"](true);
Expected:
foo["test"](true);
Actual:
foo["test"];