summaryrefslogtreecommitdiff
path: root/Libraries/LibJS/Runtime/ProxyObject.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-11-28 14:33:36 +0100
committerAndreas Kling <kling@serenityos.org>2020-11-28 17:16:48 +0100
commit98f2da9834e80b125983fe59c804e39bc362f7ce (patch)
tree3c1698591cd9612f78a420050caad412110bf35c /Libraries/LibJS/Runtime/ProxyObject.h
parent97a05ac9ac56ed01720867443006db711898dbd1 (diff)
downloadserenity-98f2da9834e80b125983fe59c804e39bc362f7ce.zip
LibJS: Rename Cell::visit_children() => Cell::visit_edges()
The GC heap is really a graph of cells, so "children" didn't quite feel appropriate here.
Diffstat (limited to 'Libraries/LibJS/Runtime/ProxyObject.h')
-rw-r--r--Libraries/LibJS/Runtime/ProxyObject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibJS/Runtime/ProxyObject.h b/Libraries/LibJS/Runtime/ProxyObject.h
index 911bbe5067..c896c3f4a0 100644
--- a/Libraries/LibJS/Runtime/ProxyObject.h
+++ b/Libraries/LibJS/Runtime/ProxyObject.h
@@ -62,7 +62,7 @@ public:
void revoke() { m_is_revoked = true; }
private:
- virtual void visit_children(Visitor&) override;
+ virtual void visit_edges(Visitor&) override;
virtual bool is_proxy_object() const override { return true; }
virtual bool is_function() const override { return m_target.is_function(); }