LibJS: Implement console.assert()

This commit is contained in:
Linus Groh 2021-04-18 17:08:14 +02:00
commit 8d490aba76
Notes: sideshowbarker 2024-07-18 19:26:17 +09:00
12 changed files with 89 additions and 9 deletions

View file

@ -56,6 +56,7 @@ private:
virtual JS::Value trace() override;
virtual JS::Value count() override;
virtual JS::Value count_reset() override;
virtual JS::Value assert_() override;
ClientConnection& m_client;
WeakPtr<JS::Interpreter> m_interpreter;