This commit is contained in:
aarne
2005-11-29 15:21:45 +00:00
parent 3cd1317bda
commit dd70f6dce3
24 changed files with 323 additions and 23 deletions

View File

@@ -0,0 +1,21 @@
abstract Phrase = Cat, Tense ** {
fun
PhrUtt : PConj -> Utt -> Voc -> Phr ;
UttS : S -> Utt ;
UttQS : QS -> Utt ;
UttImpSg, UttImpPl : Pol -> Imp -> Utt ;
UttIP : IP -> Utt ;
UttIAdv : IAdv -> Utt ;
UttNP : NP -> Utt ;
UttAdv : Adv -> Utt ;
UttVP : VP -> Utt ;
NoPConj : PConj ;
PConjConj : Conj -> PConj ;
NoVoc : Voc ;
VocNP : NP -> Voc ;
}