summaryrefslogtreecommitdiff
path: root/Libraries/LibJS/Runtime/Array.h
diff options
context:
space:
mode:
Diffstat (limited to 'Libraries/LibJS/Runtime/Array.h')
-rw-r--r--Libraries/LibJS/Runtime/Array.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/Libraries/LibJS/Runtime/Array.h b/Libraries/LibJS/Runtime/Array.h
index 10906e0256..19d97416b6 100644
--- a/Libraries/LibJS/Runtime/Array.h
+++ b/Libraries/LibJS/Runtime/Array.h
@@ -37,10 +37,6 @@ public:
i32 length() const { return static_cast<i32>(elements().size()); }
- Value shift();
- Value pop();
- void push(Value);
-
private:
virtual const char* class_name() const override { return "Array"; }
virtual bool is_array() const override { return true; }