diff options
| author | bjorn <bjorn@bringert.net> | 2008-10-30 16:53:26 +0000 |
|---|---|---|
| committer | bjorn <bjorn@bringert.net> | 2008-10-30 16:53:26 +0000 |
| commit | 09177428d3319a71df84ce045e1199b6f33efba0 (patch) | |
| tree | 823ab246999bcce5e893f193166b21923648c15f /next-lib/src/parsing/Parse.gf | |
| parent | e64d5a8bb0f04b6fe298c949ea60331320c98c72 (diff) | |
Started working on a parsing grammar. English-only so far.
Diffstat (limited to 'next-lib/src/parsing/Parse.gf')
| -rw-r--r-- | next-lib/src/parsing/Parse.gf | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/next-lib/src/parsing/Parse.gf b/next-lib/src/parsing/Parse.gf new file mode 100644 index 000000000..7396ae499 --- /dev/null +++ b/next-lib/src/parsing/Parse.gf @@ -0,0 +1,16 @@ +abstract Parse = + Noun, + Verb, + Adjective, + Adverb, + Numeral, + Sentence, + Question, + Relative, + Conjunction, + Phrase, + Text, + Structural, + Idiom, + + Lexicon ; |
