summaryrefslogtreecommitdiff
path: root/grammars/TALK/GF_GoDiS/Domain/SpecResEng.gf
diff options
context:
space:
mode:
Diffstat (limited to 'grammars/TALK/GF_GoDiS/Domain/SpecResEng.gf')
-rw-r--r--grammars/TALK/GF_GoDiS/Domain/SpecResEng.gf27
1 files changed, 0 insertions, 27 deletions
diff --git a/grammars/TALK/GF_GoDiS/Domain/SpecResEng.gf b/grammars/TALK/GF_GoDiS/Domain/SpecResEng.gf
deleted file mode 100644
index f08ce3e9e..000000000
--- a/grammars/TALK/GF_GoDiS/Domain/SpecResEng.gf
+++ /dev/null
@@ -1,27 +0,0 @@
--- 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 => ""
- };
-
-}
-