Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Misc
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Misc/ExpressionParserTypes.h |
| Include | #include "Misc/ExpressionParserTypes.h" |
Syntax
enum EParseState
{
Continue,
StopAfter,
StopBefore,
Cancel,
}
Values
| Name | Description |
|---|---|
| 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. |
Remarks
Enum specifying how to treat the currently parsing character.