summaryrefslogtreecommitdiff
path: root/examples/query/LexQueryEng.gf
diff options
context:
space:
mode:
authorjohn.j.camilleri <john.j.camilleri@chalmers.se>2013-09-16 07:17:27 +0000
committerjohn.j.camilleri <john.j.camilleri@chalmers.se>2013-09-16 07:17:27 +0000
commitf5461eb3d4eb2605b546a4ed202c12bcdaa1f4e4 (patch)
tree946c9e8542b8e8271b6b529a95c0400fa6613cb4 /examples/query/LexQueryEng.gf
parent8e1c6cca407c82fc09569d80c231b8d256735989 (diff)
Remove contribs and examples
Everything has now been moved to a separate repository at https://github.com/GrammaticalFramework/gf-contrib The contents of the examples folder are build during SetupWeb
Diffstat (limited to 'examples/query/LexQueryEng.gf')
-rw-r--r--examples/query/LexQueryEng.gf32
1 files changed, 0 insertions, 32 deletions
diff --git a/examples/query/LexQueryEng.gf b/examples/query/LexQueryEng.gf
deleted file mode 100644
index b1afc765e..000000000
--- a/examples/query/LexQueryEng.gf
+++ /dev/null
@@ -1,32 +0,0 @@
-instance LexQueryEng of LexQuery =
- open SyntaxEng, (M = MakeStructuralEng), ParadigmsEng, ExtraEng, IrregEng in {
-
-oper
- located_A : A = mkA "located" | mkA "situated" ;
-
- giveMe : NP -> VP = \np -> mkVP (mkV3 give_V) (mkNP i_Pron) np ;
- know_V2 = mkV2 know_V ;
-
--- structural words
- about_Prep : Prep = mkPrep "about" ;
- all_NP : NP = mkNP (mkPN "all") ; ---
- also_AdV : AdV = mkAdV "also" ;
- also_AdA : AdA = mkAdA "also" ;
- as_Prep : Prep = mkPrep "as" ;
- at_Prep : Prep = mkPrep "at" ;
- that_RP = ExtraEng.that_RP ;
-
- participlePropCN : Prop -> CN -> CN = \p,k -> mkCN p.ap k ;
-
- vpAP = PartVP ;
-
- called_A : A = mkA "called" | mkA "named" ;
-
- information_N : N = mkN "information" ;
- other_A : A = mkA "other" ;
- otherwise_AdV : AdV = mkAdV "otherwise" ;
- otherwise_AdA : AdA = mkAdA "otherwise" ;
- what_IQuant : IQuant = M.mkIQuant "what" "what" ;
-
-
-}