mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 15:27:35 +00:00
Use new format functions in remaining DevTools. (#3755)
* AK: Add formatter for JsonValue. * Inspector: Use new format functions. * Profiler: Use new format functions. * UserspaceEmulator: Use new format functions.
This commit is contained in:
parent
626bb1be9c
commit
d94f674bbb
11 changed files with 45 additions and 37 deletions
|
@ -261,6 +261,14 @@ private:
|
|||
} m_value;
|
||||
};
|
||||
|
||||
template<>
|
||||
struct Formatter<JsonValue> : Formatter<StringView> {
|
||||
void format(TypeErasedFormatParams& params, FormatBuilder& builder, const JsonValue& value)
|
||||
{
|
||||
Formatter<StringView>::format(params, builder, value.to_string());
|
||||
}
|
||||
};
|
||||
|
||||
}
|
||||
|
||||
using AK::JsonValue;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue