mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-21 08:33:19 +00:00
16 lines
249 B
C
16 lines
249 B
C
![]() |
/*
|
||
|
* Copyright (c) 2022, David Tuin <davidot@serenityos.org>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <LibJS/Forward.h>
|
||
|
|
||
|
namespace Web::HTML {
|
||
|
|
||
|
void report_exception(JS::ThrowCompletionOr<JS::Value> const& value);
|
||
|
|
||
|
}
|