mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-22 16:09:23 +00:00
17 lines
276 B
C++
17 lines
276 B
C++
/*
|
|
* Copyright (c) 2024, Andreas Kling <andreas@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibJS/Forward.h>
|
|
|
|
namespace Web::WebIDL {
|
|
|
|
void log_trace(JS::VM& vm, char const* function);
|
|
|
|
void set_enable_idl_tracing(bool enabled);
|
|
|
|
}
|