as3hx
as3hx copied to clipboard
implicit superclass static calls fail in haxe
trafficstars
In haxe, you can only call your class's static functions implicitly without a typename. In as3, you can call your superclass's static functions in this manner as well. So static functions called implicitly on superclasses need to have their class name explicitly specified. (e.g. staticMethod(); becomes SuperClass.staticMethod();)