summaryrefslogtreecommitdiff
path: root/next-lib/src/scandinavian/ExtEngAbs.gf
blob: 85c117e4761d35debd52c22e23dba653cedb5ec9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
abstract ExtEngAbs = Cat ** {

  cat
    Aux ;  -- auxiliary verbs: "can", "must", etc

-- Notice that $Aux$ cannot form $VP$ with infinitive, imperative, etc.

  fun
    PredAux  : NP -> Aux -> VP -> Cl ;
    QuestAux : IP -> Aux -> VP -> QCl ;

    can_Aux  : Aux ;
    must_Aux : Aux ;

}