mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 05:07:45 +00:00
LibRegex: Also print a newline after each debug line
Otherwise the new debug line would be printed right after the previous one without a newline.
This commit is contained in:
parent
052004f92d
commit
5089fd8b3c
1 changed files with 1 additions and 1 deletions
|
@ -82,7 +82,7 @@ public:
|
||||||
builder.appendff(", next ip: {}", state.instruction_position + opcode.size());
|
builder.appendff(", next ip: {}", state.instruction_position + opcode.size());
|
||||||
}
|
}
|
||||||
|
|
||||||
out(m_file, " | {:20}", builder.to_string());
|
outln(m_file, " | {:20}", builder.to_string());
|
||||||
|
|
||||||
if (is<OpCode_Compare>(opcode)) {
|
if (is<OpCode_Compare>(opcode)) {
|
||||||
for (auto& line : to<OpCode_Compare>(opcode).variable_arguments_to_string(input)) {
|
for (auto& line : to<OpCode_Compare>(opcode).variable_arguments_to_string(input)) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue