Navigation
API > API/Runtime > API/Runtime/Core
Enum specifying how to treat the currently parsing character.
| Name | EParseState |
| Type | enum |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/ExpressionParserTypes.h |
| Include Path | #include "Misc/ExpressionParserTypes.h" |
Syntax
enum EParseState
{
Continue,
StopAfter,
StopBefore,
Cancel,
}
Values
| Name | Remarks |
|---|---|
| Continue | Include this character in the token and continue consuming |
| StopAfter | Include this character in the token and stop consuming |
| StopBefore | Exclude this character from the token and stop consuming |
| Cancel | Cancel parsing this token, and return nothing. |