mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
19 lines
311 B
C++
19 lines
311 B
C++
/*
|
|
* Copyright (c) 2024, Andreas Kling <andreas@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibJS/Forward.h>
|
|
#include <LibWeb/Export.h>
|
|
|
|
namespace Web::WebIDL {
|
|
|
|
void log_trace(JS::VM& vm, char const* function);
|
|
|
|
WEB_API void set_enable_idl_tracing(bool enabled);
|
|
|
|
}
|