EParseState

Enum specifying how to treat the currently parsing character.

Windows
MacOS
Linux

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.

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