Cannot create StringImpl from empty string literal
Created attachment 411047 [details] Patch
Comment on attachment 411047 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=411047&action=review > Source/JavaScriptCore/inspector/JSInjectedScriptHost.cpp:370 > + return jsNontrivialString(vm, emptyString()); Not sure what we really need in this unreachable place, but if we want to use an empty string, then how about using jsEmptyString(vm)? > Source/JavaScriptCore/runtime/SamplingProfiler.cpp:1033 > + String hash = emptyString(); No initializer is needed here, since String already initializes to the null string. Note that the code below always overwrites the value of hash anyway. I would suggest initializing to "<nil>"_s and then removing the else below, or not initializing at all. > Source/WTF/wtf/text/ASCIILiteral.h:68 > + ASSERT_UNDER_CONSTEXPR_CONTEXT(n); Nice! Does it work? > Source/WebCore/page/NavigatorBase.cpp:92 > + platformName.construct(uname(&osname) >= 0 ? String(osname.sysname) + " "_str + String(osname.machine) : emptyString()); This is seems excessively inefficient. Using emptyString() is fine, I suppose. But the code before should be makeString(osname.sysname, ' ', osname.machine) so we don’t create and destroy so many temporary strings. > Source/WebCore/platform/UserAgentQuirks.cpp:191 > + return emptyString(); In this unreachable place it seems like we could return ASCIILiteral::null() and the function could return ASCIILiteral. Could also return a null string instead of an empty one, which is slightly more efficient.
<rdar://problem/70416626>