« JewelScript v1.0.3.0 released | Main | JewelScript code examples »
JewelScript current version changes log
By jewe | March 14, 2010
This post lists all changes made to the project since it’s last public release, version 1.0.3.0. The most recent change is at the top of this post.
Bugs fixed
hybrid and interface
A compiler bug has been fixed that prevented you from using the hybrid keyword together with an interface identifier.
interface IFoo { }
class Foo hybrid IFoo // did not compile
{
}
Creating a hybrid class from an interface can be quite useful, so this has now been fixed.
operator typeof and this
A compiler bug has been fixed that prevented the expression typeof(this) to compile.
class Foo
{
method Foo() { }
method int GetType() { return typeof(this); } // did not compile
}
Topics: documentation | No Comments »
Comments
You must be logged in to post a comment.