1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 02:28:12 +00:00

LibJS: Remove unused FunctionEnvironment::replace_this_binding()

This commit is contained in:
Linus Groh 2021-10-09 16:24:09 +01:00
parent 3b0da8b28c
commit a456eae4b1

View file

@ -28,9 +28,6 @@ public:
Value this_value() const { return m_this_value; }
void set_this_value(Value value) { m_this_value = value; }
// Not a standard operation.
void replace_this_binding(Value this_value) { m_this_value = this_value; }
// [[ThisBindingStatus]]
ThisBindingStatus this_binding_status() const { return m_this_binding_status; }
void set_this_binding_status(ThisBindingStatus status) { m_this_binding_status = status; }