summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/AST.h
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2021-12-28 23:07:42 +0100
committerLinus Groh <mail@linusgroh.de>2021-12-29 00:16:51 +0100
commit8d70a50aed89d9931ce7864b26734a01a9423f1c (patch)
treefeef41fb593bace0793fd4ec6fb9959d7449e7d3 /Userland/Libraries/LibJS/AST.h
parent23e09eb7f480ea383b1ccb40e6b6434291cc8840 (diff)
downloadserenity-8d70a50aed89d9931ce7864b26734a01a9423f1c.zip
LibJS: Remove unused MemberExpression::computed_property_name()
Diffstat (limited to 'Userland/Libraries/LibJS/AST.h')
-rw-r--r--Userland/Libraries/LibJS/AST.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/Userland/Libraries/LibJS/AST.h b/Userland/Libraries/LibJS/AST.h
index 9c55e214ed..f129586dfb 100644
--- a/Userland/Libraries/LibJS/AST.h
+++ b/Userland/Libraries/LibJS/AST.h
@@ -1617,8 +1617,6 @@ public:
Expression const& object() const { return *m_object; }
Expression const& property() const { return *m_property; }
- PropertyKey computed_property_name(Interpreter&, GlobalObject&) const;
-
String to_string_approximation() const;
bool ends_in_private_name() const;