LeviLamina
Loading...
Searching...
No Matches
ScriptCompositePrintLogger.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
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 // vIndex: 0
31 virtual ~ScriptCompositePrintLogger() /*override*/ = default;
32
33 // vIndex: 1
34 virtual void onInfo(::Scripting::ContextId, ::std::string_view) const /*override*/;
35
36 // vIndex: 2
37 virtual void onWarn(::Scripting::ContextId, ::std::string_view) const /*override*/;
38
39 // vIndex: 3
40 virtual void onError(::Scripting::ContextId, ::std::string_view) const /*override*/;
41
42 // vIndex: 4
43 virtual void onException(::Scripting::ContextId, ::Scripting::Error const&, ::entt::meta_any const&) const
44 /*override*/;
45
46 // vIndex: 5
47 virtual bool shouldPrintException(::Scripting::ContextId, ::Scripting::Error const&, ::entt::meta_any const&) const
48 /*override*/;
49
50 // vIndex: 6
51 virtual void
52 onPromiseRejection(::Scripting::ContextId, ::Scripting::Error const&, ::entt::meta_any const&, bool) const
53 /*override*/;
54 // NOLINTEND
55
56public:
57 // virtual function thunks
58 // NOLINTBEGIN
59
60 // NOLINTEND
61};
Definition ScriptCompositePrintLogger.h:14
Definition IPrinter.h:13
Definition ContextId.h:7
Definition Error.h:7
Definition Alias.h:14