https://github.com/HaxeFoundation/hxcpp/blob/master/src/String.cpp#L2176
Hxcpp implementation of String is missing this
bool String::__GetStatic(const ::String &inName, Dynamic &outValue, ::hx::PropertyAccess inCallProp)
{
if (HX_FIELD_EQ(inName,"fromCharCode") ) { outValue = fromCharCode_dyn(); return true; }
return false;
}
which causes String.fromCharCode to not work on reflection.
https://github.com/HaxeFoundation/hxcpp/blob/master/src/String.cpp#L2176
Hxcpp implementation of String is missing this
which causes String.fromCharCode to not work on reflection.