Haxe接口使用本机getter / setter编译为swc

时间:2013-05-25 11:07:33

标签: flash interface haxe

如何使用支持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;
}

0 个答案:

没有答案