An NDoc Documented Class Library

SymbolType Enumeration

Type of symbol.

public enum SymbolType

Members

Member Name Description
NonTerminal Normal nonterminal
Terminal Normal terminal
WhiteSpace This Whitespace symbols is a special terminal that is automatically ignored the the parsing engine. Any text accepted as whitespace is considered to be inconsequential and "meaningless".
End The End symbol is generated when the tokenizer reaches the end of the source text.
CommentStart This type of symbol designates the start of a block quote.
CommentEnd This type of symbol designates the end of a block quote.
CommentLine When the engine reads a token that is recognized as a line comment, the remaining characters on the line are automatically ignored by the parser.
Error The Error symbol is a general-purpose means of representing characters that were not recognized by the tokenizer. In other words, when the tokenizer reads a series of characters that is not accepted by the DFA engine, a token of this type is created.

Requirements

Namespace: GoldParser

Assembly: GoldParser (in GoldParser.dll)

See Also

GoldParser Namespace