Navigation
API > API/Runtime > API/Runtime/VerseCompiler
Base class of unary operators.
| Name | CExprUnaryOp |
| Type | class |
| Header File | /Engine/Source/Runtime/VerseCompiler/Public/uLang/Semantics/Expression.h |
| Include Path | #include "uLang/Semantics/Expression.h" |
Syntax
class CExprUnaryOp : public uLang::CExpressionBase
Inheritance Hierarchy
- CSharedMix → CAstNode → CExpressionBase → CExprUnaryOp
- CAttributable → CExpressionBase → CExprUnaryOp
Derived Classes
CExprUnaryOp derived class hierarchy
Constructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
CExprUnaryOp
(
TSPtr< CExpressionBase >&& Operand, |
uLang/Semantics/Expression.h |
Variables
Protected
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| _Operand | TSPtr< CExpressionBase > | uLang/Semantics/Expression.h |
Functions
Public
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
const TSPtr< CExpressionBase > & Operand() |
uLang/Semantics/Expression.h | ||
void SetOperand
(
TSPtr< CExpressionBase >&& Operand |
uLang/Semantics/Expression.h | ||
TSPtr< CExpressionBase > && TakeOperand() |
uLang/Semantics/Expression.h |
Overridden from CExpressionBase
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual const CExpressionBase * FindFirstAsyncSubExpr
(
const CSemanticProgram& Program |
Returns itself or the first async sub-expression or return nullptr if it and all its sub-expressions are immediate. | uLang/Semantics/Expression.h |
Overridden from CAstNode
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
virtual void VisitChildren
(
SAstVisitor& Visitor |
Iterates over this AST node's direct children, calling Visitor.Visit for each child. | uLang/Semantics/Expression.h |