The Gosu team is happy to announce the official release of Gosu 1.3 and Gosu Plugin 3.7 for IntelliJ 12.
<>
operator, you must use !=
instead.Primitive types are now reserved keywords.
function double() {} // It won't compile
Variables declared in the using statement are implicitly final
using(var d = new Disposable())
{
d = null // It's now Illegal
}
List<?>
to List<Object>>
List<? extends T>
to List<T>>
List<? super T>
to List<UpperBound(T)>
The plugin is available from the JetBrains repository, which is directly accessible from your IntelliJ 12 plugins setup dialog. Select “Gosu”, right click and install (see this page more detailed instructions).