summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Userland/Libraries/LibJS/Runtime/SymbolObject.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/SymbolObject.h b/Userland/Libraries/LibJS/Runtime/SymbolObject.h
index fed0a8f1af..d610692f17 100644
--- a/Userland/Libraries/LibJS/Runtime/SymbolObject.h
+++ b/Userland/Libraries/LibJS/Runtime/SymbolObject.h
@@ -22,9 +22,6 @@ public:
Symbol& primitive_symbol() { return m_symbol; }
Symbol const& primitive_symbol() const { return m_symbol; }
- DeprecatedString description() const { return m_symbol.description(); }
- bool is_global() const { return m_symbol.is_global(); }
-
private:
SymbolObject(Symbol&, Object& prototype);