Support / Discussion for Cheerp has been migrated to Discord https://discord.leaningtech.com
Uncaught ReferenceError: proxy is not defined
in Chrome's console, so something is still not right. Thanks though. I managed to refactor it to something better anyway.
client::String* == const char*
client::String* jsString = new client::String("test"); ... jsString == new client::String("test");
client::String * operator"" _cs( char const* aString, size_t aLength );
and the comparison is as simple as if ( str == "test"_cs )
{ ... }
.