diff --git a/Userland/Libraries/LibJS/Runtime/PropertyKey.h b/Userland/Libraries/LibJS/Runtime/PropertyKey.h index 3dfb6a0779..5be70863fa 100644 --- a/Userland/Libraries/LibJS/Runtime/PropertyKey.h +++ b/Userland/Libraries/LibJS/Runtime/PropertyKey.h @@ -7,6 +7,7 @@ #pragma once #include +#include #include #include @@ -186,7 +187,7 @@ private: Type m_type { Type::Invalid }; u32 m_number { 0 }; FlyString m_string; - Symbol* m_symbol { nullptr }; + Handle m_symbol; }; }