We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3024cb7 commit db24c80Copy full SHA for db24c80
src/api/EscargotPublic.cpp
@@ -606,6 +606,13 @@ StringRef* StringRef::createFromUTF8ToCompressibleString(VMInstanceRef* instance
606
return nullptr;
607
}
608
609
+StringRef* StringRef::createFromUTF16ToCompressibleString(VMInstanceRef* instance, const char16_t* s, size_t len)
610
+{
611
+ ESCARGOT_LOG_ERROR("If you want to use this function, you should enable string compression");
612
+ RELEASE_ASSERT_NOT_REACHED();
613
+ return nullptr;
614
+}
615
+
616
StringRef* StringRef::createFromASCIIToCompressibleString(VMInstanceRef* instance, const char* s, size_t len)
617
{
618
ESCARGOT_LOG_ERROR("If you want to use this function, you should enable string compression");
0 commit comments