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

LibJS: Start implementing a Console class for the interpreter

The goal is to start factoring out core ConsoleObject functionality and
to make ConsoleObject only a JS wrapper around Console.
This commit is contained in:
Emanuele Torre 2020-05-01 14:40:43 +02:00 committed by Andreas Kling
parent 745b0b27fd
commit 2e92c2e5e1
6 changed files with 95 additions and 4 deletions

View file

@ -41,6 +41,7 @@ namespace JS {
Interpreter::Interpreter()
: m_heap(*this)
, m_console(*this)
{
}