Module |
|
Header |
/Engine/Source/Developer/RigVMDeveloper/Public/RigVMCompiler/RigVMAST.h |
Include |
#include "RigVMCompiler/RigVMAST.h" |
class FRigVMBlockExprAST : public FRigVMExprAST
An abstract syntax tree block expression represents a sequence of child expressions to be executed in order. In C++ a block is represented by the curly braces { expr1, expr2, ...}.
Name | Description | |
---|---|---|
|
FRigVMBlockExprAST ( |
Disable copy constructor |
|
FRigVMBlockExprAST ( |
Default constructor (protected so that only parser can access it) |
Name | Description | |
---|---|---|
|
~FRigVMBlockExprAST() |
Virtual destructor |
Name | Description | ||
---|---|---|---|
|
Contains ( |
Returns true if this block contains a given expression |
|
|
ContainsEntry() |
Returns true if this block contains an entry expression |
|
|
IsObsolete() |
Returns true in case this block should not be executed |
|
|
ShouldExecute() |
Returns true if this block needs to execute this is determined by the block containing an entry expression |