mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 17:52:26 -05:00
f87041bf3a
Resulting in a massive rename across almost everywhere! Alongside the namespace change, we now have the following names: * JS::NonnullGCPtr -> GC::Ref * JS::GCPtr -> GC::Ptr * JS::HeapFunction -> GC::Function * JS::CellImpl -> GC::Cell * JS::Handle -> GC::Root
32 lines
813 B
C++
32 lines
813 B
C++
/*
|
|
* Copyright (c) 2022, Ben Abraham <ben.d.abraham@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/RefCounted.h>
|
|
#include <AK/Weakable.h>
|
|
#include <LibJS/Console.h>
|
|
|
|
namespace Web::HTML {
|
|
|
|
// NOTE: Temporary class to handle console messages from inside Workers
|
|
|
|
class WorkerDebugConsoleClient final : public JS::ConsoleClient {
|
|
GC_CELL(WorkerDebugConsoleClient, JS::ConsoleClient);
|
|
GC_DECLARE_ALLOCATOR(WorkerDebugConsoleClient);
|
|
|
|
public:
|
|
virtual void clear() override;
|
|
virtual void end_group() override;
|
|
virtual JS::ThrowCompletionOr<JS::Value> printer(JS::Console::LogLevel log_level, PrinterArguments arguments) override;
|
|
|
|
private:
|
|
WorkerDebugConsoleClient(JS::Console& console);
|
|
|
|
int m_group_stack_depth { 0 };
|
|
};
|
|
|
|
} // namespace Web::HTML
|