From f5461eb3d4eb2605b546a4ed202c12bcdaa1f4e4 Mon Sep 17 00:00:00 2001 From: "john.j.camilleri" Date: Mon, 16 Sep 2013 07:17:27 +0000 Subject: 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 --- examples/tutorial/syntax/Grammar.gf | 86 ------------------------------------- 1 file changed, 86 deletions(-) delete mode 100644 examples/tutorial/syntax/Grammar.gf (limited to 'examples/tutorial/syntax/Grammar.gf') diff --git a/examples/tutorial/syntax/Grammar.gf b/examples/tutorial/syntax/Grammar.gf deleted file mode 100644 index c48e89a21..000000000 --- a/examples/tutorial/syntax/Grammar.gf +++ /dev/null @@ -1,86 +0,0 @@ -abstract Grammar = { - - flags startcat=Phr ; - - cat - Phr ; -- any complete sentence e.g. "Is this pizza good?" - S ; -- declarative sentence e.g. "this pizza is good" - QS ; -- question sentence e.g. "is this pizza good" - Cl ; -- declarative clause e.g. "this pizza is good" - QCl ; -- question clause e.g. "is this pizza good" - NP ; -- noun phrase e.g. "this pizza" - IP ; -- interrogative phrase e.g "which pizza" - CN ; -- common noun phrase e.g. "very good pizza" - Det ; -- determiner e.g. "this" - IDet ; -- interrog. determiner e.g. "which" - AP ; -- adjectival phrase e.g. "very good" - Adv ; -- adverb e.g. "today" - AdA ; -- adadjective e.g. "very" - VP ; -- verb phrase e.g. "is good" - N ; -- noun e.g. "pizza" - A ; -- adjective e.g. "good" - V ; -- intransitive verb e.g. "boil" - V2 ; -- two-place verb e.g. "eat" - Pol ; -- polarity (pos or neg) - Conj ; -- conjunction e.g. "and" - Subj ; -- conjunction e.g. "because" - - fun - PhrS : S -> Phr ; - PhrQS : QS -> Phr ; - - UseCl : Pol -> Cl -> S ; - UseQCl : Pol -> QCl -> QS ; - - QuestCl : Cl -> QCl ; - - SubjS : Subj -> S -> Adv ; - - PredVP : NP -> VP -> Cl ; - - QuestVP : IP -> VP -> QCl ; - QuestV2 : IP -> NP -> V2 -> QCl ; - - ComplV2 : V2 -> NP -> VP ; - ComplAP : AP -> VP ; - - DetCN : Det -> CN -> NP ; - - ModCN : AP -> CN -> CN ; - AdVP : Adv -> VP -> VP ; - AdAP : AdA -> AP -> AP ; - - IDetCN : IDet -> CN -> IP ; - - ConjS : Conj -> S -> S -> S ; - ConjNP : Conj -> NP -> NP -> NP ; - - -- lexical insertion - - UseN : N -> CN ; - UseA : A -> AP ; - UseV : V -> VP ; - - -- entries of the closed lexicon - - this_Det : Det ; - that_Det : Det ; - these_Det : Det ; - those_Det : Det ; - every_Det : Det ; - theSg_Det : Det ; - thePl_Det : Det ; - indef_Det : Det ; - plur_Det : Det ; - two_Det : Det ; - which_IDet : IDet ; - today_Adv : Adv ; - very_AdA : AdA ; - and_Conj : Conj ; - because_Subj : Subj ; - - -- polarities - - PPos, PNeg : Pol ; - -} -- cgit v1.2.3