LeviLamina
Loading...
Searching...
No Matches
ScriptSentryLogger.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/scripting/runtime/IPrinter.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Scripting { struct ContextId; }
11namespace Scripting { struct Error; }
12// clang-format on
13
15public:
16 // member variables
17 // NOLINTBEGIN
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 ScriptSentryLogger& operator=(ScriptSentryLogger const&);
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 // vIndex: 0
31 virtual ~ScriptSentryLogger() /*override*/ = default;
32
33 // vIndex: 4
34 virtual void onException(::Scripting::ContextId, ::Scripting::Error const& error, ::entt::meta_any const&) const
35 /*override*/;
36
37 // vIndex: 6
38 virtual void onPromiseRejection(
40 ::Scripting::Error const& error,
41 ::entt::meta_any const&,
42 bool isHandled
43 ) const /*override*/;
44 // NOLINTEND
45
46public:
47 // virtual function thunks
48 // NOLINTBEGIN
49 MCNAPI void $onException(::Scripting::ContextId, ::Scripting::Error const& error, ::entt::meta_any const&) const;
50
53 ::Scripting::Error const& error,
54 ::entt::meta_any const&,
55 bool isHandled
56 ) const;
57 // NOLINTEND
58
59public:
60 // vftables
61 // NOLINTBEGIN
62 MCNAPI static void** $vftable();
63 // NOLINTEND
64};
Definition ScriptSentryLogger.h:14
static MCAPI void ** $vftable()
MCAPI void $onPromiseRejection(::Scripting::ContextId, ::Scripting::Error const &error, ::entt::meta_any const &, bool isHandled) const
MCAPI void $onException(::Scripting::ContextId, ::Scripting::Error const &error, ::entt::meta_any const &) const
Definition IPrinter.h:13
Definition ContextId.h:7
Definition Error.h:7
Definition Alias.h:14