如何使用支持native getter / setter从haxe源接口编译swc。当我使用时:
interface ITest<T>
{
#if flash
@:getter(x) function gx():Int;
@:setter(x) function sx(_v:Int):Int;
#else
#end
var x(get_x, set_x):Int;
}
我得到了swc:
public interface ITest
{
function get gx () : int;
function set sx (_v:int) : void;
function add (_v:Object) : void;
}