1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 14:28:12 +00:00

LibJS: Improve CallExpression::execute()'s error messages

This commit is contained in:
Linus Groh 2020-04-19 01:12:51 +01:00 committed by Andreas Kling
parent 4e9643981f
commit 03f2024b6e
2 changed files with 29 additions and 9 deletions

View file

@ -716,6 +716,8 @@ public:
PropertyName computed_property_name(Interpreter&) const;
String to_string_approximation() const;
private:
virtual bool is_member_expression() const override { return true; }
virtual const char* class_name() const override { return "MemberExpression"; }