Enum GroupAttributes
Characteristics of a group.
[Flags]
public enum GroupAttributes : ushort
Fields
AdvanceByCharacter = 2When inside the group, the parser should read the input without invoking the regular tokenizer.
EndsOnEndOfInput = 1The group can also end when the end of input is reached, without encountering its end symbol.
KeepEndToken = 4When the group ends, the parser should keep the token that ended the group in the input stream.
In GOLD Parser and earlier versions of Farkle, groups with this flag set were called to have an "open ending mode".
None = 0No attributes are defined.