2

如何从支持本机 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;
}
4

0 回答 0