Parsing state flags (passed through parsing methods).
Namespace:
Nova.Parsing
Assembly:
Nova.CodeDOM (in Nova.CodeDOM.dll) Version: 7.44.8391.13415
Syntax [FlagsAttribute]
public enum ParseFlags
Members
| Member name | Value | Description |
---|
| None | 0 | No flags set. |
| Expression | 1 | Parsing an expression. |
| Type | 2 | Parsing a type reference. |
| NotAType | 4 | Parsing something that's NOT a type. |
| Block | 8 | Parsing a block. |
| Arguments | 16 | Parsing the arguments of an ArgumentsOperator. |
| NoArrays | 32 | Suppress parsing of arrays, specifically for built-in types. |
| SkipMethodBodies | 64 | Skip parsing of method bodies (use for performance if you don't care about method bodies). |
See Also