summaryrefslogtreecommitdiff
path: root/next-lib/src/parsing/Parse.gf
diff options
context:
space:
mode:
authorbjorn <bjorn@bringert.net>2008-10-30 16:53:26 +0000
committerbjorn <bjorn@bringert.net>2008-10-30 16:53:26 +0000
commit09177428d3319a71df84ce045e1199b6f33efba0 (patch)
tree823ab246999bcce5e893f193166b21923648c15f /next-lib/src/parsing/Parse.gf
parente64d5a8bb0f04b6fe298c949ea60331320c98c72 (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.gf16
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 ;