diff options
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/StringObject.h')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/StringObject.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/StringObject.h b/Userland/Libraries/LibJS/Runtime/StringObject.h index 8c7ee5cc94..3f74ec8769 100644 --- a/Userland/Libraries/LibJS/Runtime/StringObject.h +++ b/Userland/Libraries/LibJS/Runtime/StringObject.h @@ -29,6 +29,7 @@ public: private: virtual bool is_string_object() const final { return true; } virtual void visit_edges(Visitor&) override; + virtual Optional<PropertyDescriptor> get_own_property_descriptor(PropertyName const&) const override; PrimitiveString& m_string; }; |