Navigation
API > API/Runtime > API/Runtime/VerseCompiler > API/Runtime/VerseCompiler/uLang > API/Runtime/VerseCompiler/uLang/Semantics
Inheritance Hierarchy
References
| Module | VerseCompiler |
| Header | /Engine/Source/Runtime/VerseCompiler/Public/uLang/Semantics/Expression.h |
| Include | #include "uLang/Semantics/Expression.h" |
Syntax
class CExprBinaryOp : public uLang::CExpressionBase
Remarks
Base class of binary operators.
Constructors
| Type | Name | Description | |
|---|---|---|---|
CExprBinaryOp
(
TSPtr< CExpressionBase >&& Lhs, |
Functions
| Type | Name | Description | |
|---|---|---|---|
| const TSPtr< CExpressionBase > & | Lhs () |
||
| const TSPtr< CExpressionBase > & | Rhs () |
||
| void | SetLhs
(
TSPtr< CExpressionBase >&& NewLhs |
||
| void | SetRhs
(
TSPtr< CExpressionBase >&& NewRhs |
||
| TSPtr< CExpressionBase > && | TakeRhs () |
Overridden from CExpressionBase
| Type | Name | Description | |
|---|---|---|---|
| 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. |
Overridden from CAstNode
| Type | Name | Description | |
|---|---|---|---|
| void | VisitChildren
(
SAstVisitor& Visitor |
Iterates over this AST node's direct children, calling Visitor.Visit for each child. |