romamik
romamik
It is now working with haxe 4.3.0 and hxcpp 4.3.2 🎉
It looks that TreeOwned was removed. There are tree.get_tree_data() and Tree::from_tree_data though.
Nope. Now eqNullable is always called. ```haxe ... @:op(A == B) public inline function eqNullable(o:Null):Bool { var oImpl: Null = cast o; return if (this == null && oImpl ==...
> Actually there's a real problem with objects and comparisons on js: > > ``` > var x = {}; > var y = {}; > x == y; //...