summaryrefslogtreecommitdiff
path: root/old-examples/stoneage/StoneageResSwe.gf
blob: 6eb9d1afeeecfbb3e9edfdfc64ddc09c6b6a89b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
resource StoneageResSwe = open ResourceSwe, SyntaxSwe, ParadigmsSwe in {

oper
  PresV : V -> NP -> Phr = \v,s -> PresCl (SPredV s v) ;
  PresV2 : V2 -> NP -> NP -> Phr = \v,s,o -> PresCl (SPredV2 s v o) ;
  PresV3 : V3 -> NP -> NP -> NP -> Phr = \v,s,o,r -> PresCl (SPredV3 s v o r) ;
  PresVasV2 : V -> NP -> NP -> Phr = \ v -> PresV2 (dirV2 v) ;

  PresCl : Cl -> Phr = 
    \c -> defaultSentence (UseCl (PosTP TPresent ASimul) c) ** {lock_Phr = <>} ;
 
  ModPosA : ADeg -> CN -> CN = \a -> ModAP (PositADeg a) ;
  ModA : A -> CN -> CN = \a -> ModAP (UseA a) ;

}