Custom property accessor
-
What is a "custom property accessor", when was it deprecated, and what replaced it? All I know is that my project won't build because "Custom property accessor is not supported, please use 'get'".
-
Instead of
var foo(get_foo, set_foo):Bar;
, you now have to usevar foo(get, set):Bar;
. This was a change in Haxe 4.