mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-27 19:59:17 +00:00
LibJS: Remove Cell::interpreter()
It's never necessary to find the current Interpreter for a given Cell anymore. Get rid of this accessor.
This commit is contained in:
@@ -56,16 +56,6 @@ VM& Cell::vm() const
|
||||
return heap().vm();
|
||||
}
|
||||
|
||||
Interpreter& Cell::interpreter()
|
||||
{
|
||||
return heap().interpreter();
|
||||
}
|
||||
|
||||
Interpreter& Cell::interpreter() const
|
||||
{
|
||||
return heap().interpreter();
|
||||
}
|
||||
|
||||
const LogStream& operator<<(const LogStream& stream, const Cell* cell)
|
||||
{
|
||||
if (!cell)
|
||||
|
||||
Reference in New Issue
Block a user