Closed th3spis closed 1 month ago
remove these lines: https://github.com/v8/v8/blob/0e75d85d8e3467a536bca01d89d8a180a8bcffca/src/objects/string.cc#L694-L699
if (len > kMaxShortPrintLength) {
accumulator->Add("...<truncated>>");
accumulator->Add(SuffixForDebugPrint());
accumulator->Put('>');
return;
}
Also some unicode strings can't be parsed (ambiguous hex escapes, missing >
, etc), needs a workaround
Great, thank you!
Is there any chance to avoid truncating long strings? The patched V8 binary for disassembling is good, but it is not obtaining a string parameters since it is too long:
Therefore the decompiled code does not actually contain the real value of the string: