Click or drag to resize

ParseFlags Enumeration

Parsing state flags (passed through parsing methods).

Namespace:  Nova.Parsing
Assembly:  Nova.CodeDOM (in Nova.CodeDOM.dll) Version: 7.44.8391.13415
Syntax
C#
[FlagsAttribute]
public enum ParseFlags
Members
  Member nameValueDescription
None0No flags set.
Expression1Parsing an expression.
Type2Parsing a type reference.
NotAType4Parsing something that's NOT a type.
Block8Parsing a block.
Arguments16Parsing the arguments of an ArgumentsOperator.
NoArrays32Suppress parsing of arrays, specifically for built-in types.
SkipMethodBodies64Skip parsing of method bodies (use for performance if you don't care about method bodies).
See Also