Some updates to the compiler and the framework.
Most important update was fixing the virtual + override semantics for jsc:actionscript. It’ did not allow to combine multiple events for example.
Final build for this year has been released. The example javascript application has been also made available to download. It has been precompiled to javascript to speed up learning.
ASP.NET developers can now write their client side code in C# or Visual Basic. This also applies to technologies like Silverlight
See more:
http://zproxy.wordpress.com/2007/04/29/aspnet-with-jscjavascript/
jsc:javscript now supports c# anonymous types, which means you can now declare anonymous types and use them:)
The following is now able to be translated:
from i in items.Select(i => i.Trim())
where i.ToLower().IndexOf(user_filter) > -1
let xlength = i.Length
select new { i, xlength }