1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 12:08:14 +00:00

LibJS+LibLine: Run clang-format

This commit is contained in:
Andreas Kling 2022-02-13 14:55:23 +01:00
parent 92e0378dbd
commit 88e7d44cc4
3 changed files with 3 additions and 3 deletions

View file

@ -9,8 +9,8 @@
#include <AK/String.h>
#include <LibJS/Forward.h>
#include <LibJS/Heap/Cell.h>
#include <LibJS/Runtime/Value.h>
#include <LibJS/Runtime/Utf16String.h>
#include <LibJS/Runtime/Value.h>
namespace JS {
@ -31,6 +31,7 @@ public:
bool has_utf16_string() const { return m_has_utf16_string; }
Optional<Value> get(GlobalObject&, PropertyKey const&) const;
private:
virtual const char* class_name() const override { return "PrimitiveString"; }