1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 05:47:34 +00:00

LibJS: Actually override is_private_identifier() in PrivateIdentifier

Regression from 72689ce7bd.
This commit is contained in:
Andreas Kling 2022-03-06 00:48:44 +01:00
parent 7ebb421ee9
commit d5aed70dcf

View file

@ -1220,6 +1220,8 @@ public:
virtual Completion execute(Interpreter&, GlobalObject&) const override;
virtual void dump(int indent) const override;
virtual bool is_private_identifier() const override { return true; }
private:
FlyString m_string;
};