mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-18 08:20:44 +00:00
LibJS/Bytecode: Fix wonky serialization of instruction value lists
This commit is contained in:
parent
9cbf17f181
commit
b45f55b199
Notes:
sideshowbarker
2024-07-17 03:18:29 +09:00
Author: https://github.com/awesomekling
Commit: b45f55b199
Pull-request: https://github.com/SerenityOS/serenity/pull/24240
Reviewed-by: https://github.com/Hendiadyoin1
Reviewed-by: https://github.com/trflynn89 ✅
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ static ByteString format_value_list(StringView name, ReadonlySpan<Value> values)
|
|||
{
|
||||
StringBuilder builder;
|
||||
if (!name.is_empty())
|
||||
builder.appendff(", \033[32m{}\033[0m:[", name);
|
||||
builder.appendff("\033[32m{}\033[0m:[", name);
|
||||
builder.join(", "sv, values);
|
||||
builder.append("]"sv);
|
||||
return builder.to_byte_string();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue