summaryrefslogtreecommitdiff
path: root/examples/stoneage/StoneageResEng.gf
blob: 7ea912902fdbfbabfe51273fdee2341dea73b5d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
resource StoneageResEng = open ResourceEng, ParadigmsEng in {

oper
  PresV : V -> NP -> S = \v,s -> PresCl (SPredV s v) ;
  PresV2 : V2 -> NP -> NP -> S = \v,s,o -> PresCl (SPredV2 s v o) ;
  PresVasV2 : V -> NP -> NP -> S = \ v -> PresV2 (dirV2 v) ;

  PresCl : Cl -> S = UseCl (PosTP TPresent ASimul) ;
 
  ModPosA : ADeg -> CN -> CN = \a -> ModAP (PositADeg a) ;
  ModA : A -> CN -> CN = \a -> ModAP (UseA a) ;

}