diff options
| author | john.j.camilleri <john.j.camilleri@chalmers.se> | 2013-09-16 07:17:27 +0000 |
|---|---|---|
| committer | john.j.camilleri <john.j.camilleri@chalmers.se> | 2013-09-16 07:17:27 +0000 |
| commit | f5461eb3d4eb2605b546a4ed202c12bcdaa1f4e4 (patch) | |
| tree | 946c9e8542b8e8271b6b529a95c0400fa6613cb4 /examples/grammar-terms/GrammarTermsGF.gf | |
| parent | 8e1c6cca407c82fc09569d80c231b8d256735989 (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/grammar-terms/GrammarTermsGF.gf')
| -rw-r--r-- | examples/grammar-terms/GrammarTermsGF.gf | 109 |
1 files changed, 0 insertions, 109 deletions
diff --git a/examples/grammar-terms/GrammarTermsGF.gf b/examples/grammar-terms/GrammarTermsGF.gf deleted file mode 100644 index 268be0588..000000000 --- a/examples/grammar-terms/GrammarTermsGF.gf +++ /dev/null @@ -1,109 +0,0 @@ -concrete GrammarTermsGF of GrammarTerms = - open Prelude in { - -lincat - Rule = Str ; - Cat = Str ; - ParamType = Str ; - ParamValue = Str ; - Language = Str ; - [Cat] = Str ; - [ParamType] = Str ; - -lin - RuleFun c cs = cs ++ "->" ++ c ; - RuleInherent c ps = "lincat" ++ c ++ ":" ++ "{" ++ ps ++ "}" ; - RuleVariable c ps = "lincat" ++ c ++ ":" ++ ps ++ "=>" ++ "Str" ; - -lin - BaseCat c = c ; - ConsCat c cs = c ++ "->" ++ cs ; - - BaseParamType c = c ; - ConsParamType c cs = c ++ "," ++ cs ; - -lin - CatA = "A" ; - CatA2 = "A2" ; - CatAP = "AP" ; - CatAdA = "AdA" ; - CatAdN = "AdN" ; - CatAdV = "AdV" ; - CatAdv = "Adv" ; - CatAnt = "Ant" ; - CatCAdv = "CAdv" ; - CatCN = "CN" ; - CatCard = "Card" ; - CatCl = "Cl" ; - CatClSlash = "ClSlash" ; - CatComp = "Comp" ; - CatConj = "Conj" ; - CatDet = "Det" ; - CatDig = "Dig" ; - CatDigits = "Digits" ; - CatIAdv = "IAdv" ; - CatIComp = "IComp" ; - CatIDet = "IDet" ; - CatIP = "IP" ; - CatIQuant = "IQuant" ; - CatImp = "Imp" ; - CatImpForm = "ImpForm" ; - CatInterj = "Interj" ; - CatListAP = "ListAP" ; - CatListAdv = "ListAdv" ; - CatListNP = "ListNP" ; - CatListRS = "ListRS" ; - CatListS = "ListS" ; - CatN = "N" ; - CatN2 = "N2" ; - CatN3 = "N3" ; - CatNP = "NP" ; - CatNum = "Num" ; - CatNumeral = "Numeral" ; - CatOrd = "Ord" ; - CatPConj = "PConj" ; - CatPN = "PN" ; - CatPhr = "Phr" ; - CatPol = "Pol" ; - CatPredet = "Predet" ; - CatPrep = "Prep" ; - CatPron = "Pron" ; - CatPunct = "Punct" ; - CatQCl = "QCl" ; - CatQS = "QS" ; - CatQuant = "Quant" ; - CatRCl = "RCl" ; - CatRP = "RP" ; - CatRS = "RS" ; - CatS = "S" ; - CatSC = "SC" ; - CatSSlash = "SSlash" ; - CatSub100 = "Sub100" ; - CatSub1000 = "Sub1000" ; - CatSubj = "Subj" ; - CatTemp = "Temp" ; - CatTense = "Tense" ; - CatText = "Text" ; - CatUnit = "Unit" ; - CatUtt = "Utt" ; - CatV = "V" ; - CatV2 = "V2" ; - CatV2A = "V2A" ; - CatV2Q = "V2Q" ; - CatV2S = "V2S" ; - CatV2V = "V2V" ; - CatV3 = "V3" ; - CatVA = "VA" ; - CatVP = "VP" ; - CatVPSlash = "VPSlash" ; - CatVQ = "VQ" ; - CatVS = "VS" ; - CatVV = "VV" ; - CatVoc = "Voc" ; - - PTGender = "Gender" ; - PTNumber = "Number" ; - PTCase = "Case" ; - PTTense = "Tense" ; - -} |
