Enum TokenSymbolAttributes
Characteristics of a token symbol.
[Flags]
public enum TokenSymbolAttributes : uint
Fields
Generated = 16The token symbol was not explicitly defined by the grammar author.
GroupStart = 2The token symbol can start a group.
Hidden = 8The token symbol should not be displayed by parsers in the expected tokens list in case of a syntax error.
Noise = 4The token symbol must be skipped by parsers if encountered in an unexpected place in the input.
None = 0No attributes are defined.
Terminal = 1The token symbol can exist in the right-hand side of a production.