diff options
| author | aarne <unknown> | 2005-06-27 12:20:33 +0000 |
|---|---|---|
| committer | aarne <unknown> | 2005-06-27 12:20:33 +0000 |
| commit | 3c508f4f89557318d8e0b50372a3f0d024e317f0 (patch) | |
| tree | 3251ede247f32b51ad4d4204e84a1c325c8fe628 /grammars/TALK/GF_GoDiS/Domain/SpecResEng.gf | |
| parent | b9e13711db0085b25e9257d1034b43a3a2c47b7e (diff) | |
added Ann-Charlotte's grammars
Diffstat (limited to 'grammars/TALK/GF_GoDiS/Domain/SpecResEng.gf')
| -rw-r--r-- | grammars/TALK/GF_GoDiS/Domain/SpecResEng.gf | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/grammars/TALK/GF_GoDiS/Domain/SpecResEng.gf b/grammars/TALK/GF_GoDiS/Domain/SpecResEng.gf new file mode 100644 index 000000000..f08ce3e9e --- /dev/null +++ b/grammars/TALK/GF_GoDiS/Domain/SpecResEng.gf @@ -0,0 +1,27 @@ +-- A file with Pointers...
+-- With pointers I mean the phrases that point out a specific semantics of a segment.
+-- Example "I want to listen to the artist Sting" where "the artist" makes clear
+-- that "Sting" is an artist and not a song for instance.
+
+resource SpecResEng = {
+
+param ListInfo = Numeric | Ordered ;
+param ItemChoice = Artist | Song | Post;
+
+oper listForm : ListInfo => Str
+ = table {
+ Numeric => ["number"];
+ Ordered => ["the"]
+
+ };
+
+
+oper itemForm : ItemChoice => Str
+ = table {
+ Artist => ["the artist"];
+ Song => ["the song"];
+ Post => ""
+ };
+
+}
+
|
