Navigation
API > API/Runtime > API/Runtime/VerseCompiler
Base class of binary operators.
| Name | CExprBinaryOp |
| Type | class |
| Header File | /Engine/Source/Runtime/VerseCompiler/Public/uLang/Semantics/Expression.h |
| Include Path | #include "uLang/Semantics/Expression.h" |
Syntax
class CExprBinaryOp : public uLang::CExpressionBase
Inheritance Hierarchy
- CSharedMix → CAstNode → CExpressionBase → CExprBinaryOp
- CAttributable → CExpressionBase → CExprBinaryOp
Derived Classes
Constructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
CExprBinaryOp
(
TSPtr< CExpressionBase >&& Lhs, |
uLang/Semantics/Expression.h |
Variables
Protected
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| _Lhs | TSPtr< CExpressionBase > | Operands. | uLang/Semantics/Expression.h | |
| _Rhs | TSPtr< CExpressionBase > | uLang/Semantics/Expression.h |
Functions
Public
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
const TSPtr< CExpressionBase > & Lhs() |
uLang/Semantics/Expression.h | ||
const TSPtr< CExpressionBase > & Rhs() |
uLang/Semantics/Expression.h | ||
void SetLhs
(
TSPtr< CExpressionBase >&& NewLhs |
uLang/Semantics/Expression.h | ||
void SetRhs
(
TSPtr< CExpressionBase >&& NewRhs |
uLang/Semantics/Expression.h | ||
TSPtr< CExpressionBase > && TakeRhs() |
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 |