FRigVMLiteralExprAST

An abstract syntax tree literal expression represents the definition of const memory for a single variable - vs a var expression which is mutable.

Windows
MacOS
Linux

Inheritance Hierarchy

FRigVMExprAST

FRigVMVarExprAST

FRigVMLiteralExprAST

References

Module

RigVMDeveloper

Header

/Engine/Source/Developer/RigVMDeveloper/Public/RigVMCompiler/RigVMAST.h

Include

#include "RigVMCompiler/RigVMAST.h"

Syntax

class FRigVMLiteralExprAST : public FRigVMVarExprAST

Remarks

An abstract syntax tree literal expression represents the definition of const memory for a single variable - vs a var expression which is mutable. In C++ the literal expression is a literal declaration, for ex: const float PI = 3.14f; The literal expression references a pin from the model.

Constructors

Name Description

Public function

FRigVMLiteralExprAST

(
    const FRigVMLiteralExprAST&
)

Disable copy constructor

Protected function

FRigVMLiteralExprAST

(
    const FRigVMParserAST* InParse...,
    URigVMPin* InPin
)

Default constructor (protected so that only parser can access it)

Destructors

Name Description

Public function Virtual

~FRigVMLiteralExprAST()

Virtual destructor

Overridden from FRigVMExprAST

Name Description

Public function Virtual Const

bool

 

IsA

(
    EType InType
)

Overload of the type checking mechanism

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss