Version

GrammarWarningType Enumeration

Represents the types of warnings which can occur when analyzing a Grammar.
Syntax
'Declaration
 
Public Enum GrammarWarningType 
   Inherits System.Enum
public enum GrammarWarningType : System.Enum 
Members
MemberDescription
AmbiguityAn ambiguity will occur if the parser is in a certain state and a specific token is processed, which could impact performance.
ComplexNonTerminalSymbolA non-terminal symbol is very complex (contains over 100 productions) and may need to be simplified by moving the contents of alternation or optional sub-rules to their own non-terminal symbols.
SymbolCannotBeParsedA non-terminal symbol or a significant terminal symbol cannot be used in the parse tree because it is not directly or indirectly referenced by the start symbol of the Grammar.
UnnecessarySyntaxRuleA SyntaxRule is unnecessary or redundant and can be removed.
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also