Remove dead code

This commit is contained in:
2025-06-23 12:36:49 -04:00
parent f4c4ed4c36
commit 2cd2975ad4

View File

@@ -1144,6 +1144,7 @@ inline PRESERVE_NONE WeaselJsonStatus n_string2(Parser3 *self, char *buf,
inline PRESERVE_NONE WeaselJsonStatus n_string_following_escape(Parser3 *self, inline PRESERVE_NONE WeaselJsonStatus n_string_following_escape(Parser3 *self,
char *buf, char *buf,
char *bufEnd) { char *bufEnd) {
assert(self->strDfa.accept());
switch (*buf) { switch (*buf) {
case '"': case '"':
case '\\': case '\\':
@@ -1155,7 +1156,6 @@ inline PRESERVE_NONE WeaselJsonStatus n_string_following_escape(Parser3 *self,
case 't': case 't':
*self->writeBuf++ = tables.unescape[uint8_t(*buf++)]; *self->writeBuf++ = tables.unescape[uint8_t(*buf++)];
self->pop(); self->pop();
self->strDfa.reset();
if (auto s = self->push({N_STRING2})) { if (auto s = self->push({N_STRING2})) {
return s; return s;
} }
@@ -1164,7 +1164,6 @@ inline PRESERVE_NONE WeaselJsonStatus n_string_following_escape(Parser3 *self,
++buf; ++buf;
self->utf8Codepoint = 0; self->utf8Codepoint = 0;
self->pop(); self->pop();
self->strDfa.reset();
if (auto s = self->push({T_HEX, T_HEX, T_HEX, T_HEX2, N_STRING2})) { if (auto s = self->push({T_HEX, T_HEX, T_HEX, T_HEX2, N_STRING2})) {
return s; return s;
} }