1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-24 17:47:43 +00:00

LibJS: Add formatting helper for Bytecode::Register

This commit is contained in:
Andreas Kling 2021-06-03 18:29:30 +02:00
parent 37cb70836b
commit 23a4448862
2 changed files with 14 additions and 6 deletions

View file

@ -38,27 +38,27 @@ void SetVariable::execute(Bytecode::Interpreter& interpreter) const
String Load::to_string() const String Load::to_string() const
{ {
return String::formatted("Load dst:r{}, value:{}", m_dst.index(), m_value.to_string_without_side_effects()); return String::formatted("Load dst:{}, value:{}", m_dst, m_value.to_string_without_side_effects());
} }
String Add::to_string() const String Add::to_string() const
{ {
return String::formatted("Add dst:r{}, src1:r{}, src2:r{}", m_dst.index(), m_src1.index(), m_src2.index()); return String::formatted("Add dst:{}, src1:{}, src2:{}", m_dst, m_src1, m_src2);
} }
String NewString::to_string() const String NewString::to_string() const
{ {
return String::formatted("NewString dst:r{}, string:\"{}\"", m_dst.index(), m_string); return String::formatted("NewString dst:{}, string:\"{}\"", m_dst, m_string);
} }
String GetVariable::to_string() const String GetVariable::to_string() const
{ {
return String::formatted("GetVariable dst:r{}, identifier:{}", m_dst.index(), m_identifier); return String::formatted("GetVariable dst:{}, identifier:{}", m_dst, m_identifier);
} }
String SetVariable::to_string() const String SetVariable::to_string() const
{ {
return String::formatted("SetVariable identifier:{}, src:r{}", m_identifier, m_src.index()); return String::formatted("SetVariable identifier:{}, src:{}", m_identifier, m_src);
} }
} }

View file

@ -6,7 +6,7 @@
#pragma once #pragma once
#include <AK/Types.h> #include <AK/Format.h>
namespace JS::Bytecode { namespace JS::Bytecode {
@ -24,3 +24,11 @@ private:
}; };
} }
template<>
struct AK::Formatter<JS::Bytecode::Register> : AK::Formatter<FormatString> {
void format(FormatBuilder& builder, JS::Bytecode::Register const& value)
{
return AK::Formatter<FormatString>::format(builder, "r{}", value.index());
}
};