mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 12:17:44 +00:00
LibJS: Add Cell::Visitor::visit(Cell&)
This commit is contained in:
parent
e34e21367e
commit
01828edd37
1 changed files with 4 additions and 0 deletions
|
@ -51,6 +51,10 @@ public:
|
||||||
if (cell)
|
if (cell)
|
||||||
visit_impl(*cell);
|
visit_impl(*cell);
|
||||||
}
|
}
|
||||||
|
void visit(Cell& cell)
|
||||||
|
{
|
||||||
|
visit_impl(cell);
|
||||||
|
}
|
||||||
void visit(Value);
|
void visit(Value);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue