LeviLamina
Loading...
Searching...
No Matches
CompiledExpressionWithContentScope.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/molang/MolangVersion.h"
7#include "mc/util/molang/CompiledExpressionWithoutContentScope.h"
8
9// auto generated forward declare list
10// clang-format off
11class RenderParams;
12struct MolangScriptArg;
13namespace Bedrock { class StaticOptimizedString; }
14namespace Molang::details { class IComplexExpression; }
15namespace Molang::details { class Program; }
16// clang-format on
17
18namespace Molang::details {
19
20class CompiledExpressionWithContentScope : public ::Molang::details::CompiledExpressionWithoutContentScope {
21public:
22 // member variables
23 // NOLINTBEGIN
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 CompiledExpressionWithContentScope& operator=(CompiledExpressionWithContentScope const&);
30 CompiledExpressionWithContentScope(CompiledExpressionWithContentScope const&);
31 CompiledExpressionWithContentScope();
32
33public:
34 // virtual functions
35 // NOLINTBEGIN
36 virtual ::std::unique_ptr<::Molang::details::IComplexExpression> clone() const /*override*/;
37
38 virtual ::MolangScriptArg const& evalGeneric(::RenderParams& params) const /*override*/;
39
40 virtual ~CompiledExpressionWithContentScope() /*override*/ = default;
41 // NOLINTEND
42
43public:
44 // member functions
45 // NOLINTBEGIN
47 ::Molang::details::Program instructions,
48 ::Bedrock::StaticOptimizedString expressionString,
49 ::MolangVersion version,
50 bool hasVariableAssignments
51 );
52 // NOLINTEND
53
54public:
55 // constructor thunks
56 // NOLINTBEGIN
57 MCNAPI void* $ctor(
58 ::Molang::details::Program instructions,
59 ::Bedrock::StaticOptimizedString expressionString,
60 ::MolangVersion version,
61 bool hasVariableAssignments
62 );
63 // NOLINTEND
64
65public:
66 // virtual function thunks
67 // NOLINTBEGIN
68 MCNAPI ::std::unique_ptr<::Molang::details::IComplexExpression> $clone() const;
69
70 MCNAPI ::MolangScriptArg const& $evalGeneric(::RenderParams& params) const;
71
72
73 // NOLINTEND
74
75public:
76 // vftables
77 // NOLINTBEGIN
78 MCNAPI static void** $vftable();
79 // NOLINTEND
80};
81
82} // namespace Molang::details
Definition StaticOptimizedString.h:7
MCAPI CompiledExpressionWithContentScope(::Molang::details::Program instructions, ::Bedrock::StaticOptimizedString expressionString, ::MolangVersion version, bool hasVariableAssignments)
MCAPI void * $ctor(::Molang::details::Program instructions, ::Bedrock::StaticOptimizedString expressionString, ::MolangVersion version, bool hasVariableAssignments)
MCAPI::MolangScriptArg const & $evalGeneric(::RenderParams &params) const
MCAPI ::std::unique_ptr<::Molang::details::IComplexExpression > $clone() const
Definition CompiledExpressionWithoutContentScope.h:24
Definition IComplexExpression.h:21
Definition Program.h:13
Definition RenderParams.h:30
Definition MolangScriptArg.h:33
Definition Alias.h:14