1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 16:17:45 +00:00

LibJS: Mark [[HostDefined]] accessor on scripts as const

This commit is contained in:
networkException 2022-10-02 23:16:19 +02:00 committed by Andreas Kling
parent fb6de442c6
commit 5a3e079deb

View file

@ -32,7 +32,7 @@ public:
Realm& realm() { return *m_realm; }
Program const& parse_node() const { return *m_parse_node; }
HostDefined* host_defined() { return m_host_defined; }
HostDefined* host_defined() const { return m_host_defined; }
StringView filename() const { return m_filename; }
private: