Enum GroupAttributes
Characteristics of a group.
[Flags]
public enum GroupAttributes : ushort
Fields
AdvanceByCharacter = 2
When inside the group, the parser should read the input without invoking the regular tokenizer.
EndsOnEndOfInput = 1
The group can also end when the end of input is reached, without encountering its end symbol.
KeepEndToken = 4
When 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 = 0
No attributes are defined.