Created
February 1, 2013 06:36
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
type Expression = | |
| Terminal of string | |
| TerminalOneOf of string | |
| TerminalUnicode of UnicodeCategory | |
| TerminalWildcard | |
| NonTerminal of string | |
| Epsilon | |
| Sequence of Expression list | |
| Choice of Expression list | |
| ZeroOrMore of Expression | |
| OneOrMore of Expression | |
| Optional of Expression | |
| And of Expression | |
| Not of Expression | |
| Rule of string * Expression * string |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment