ladybird/Libraries/LibWeb/WebIDL/Tracing.h

19 lines
311 B
C
Raw Normal View History

/*
* Copyright (c) 2024, Andreas Kling <andreas@ladybird.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <LibJS/Forward.h>
2025-07-19 19:35:33 -07:00
#include <LibWeb/Export.h>
namespace Web::WebIDL {
2025-06-28 03:32:38 -07:00
void log_trace(JS::VM& vm, char const* function);
2025-07-19 19:35:33 -07:00
WEB_API void set_enable_idl_tracing(bool enabled);
}