mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 04:59:31 -06:00
12 lines
202 B
Plaintext
12 lines
202 B
Plaintext
abstract Discont = {
|
|
cat
|
|
S ; Cl ; NP ; VP ; AP ;
|
|
fun
|
|
DeclCl : Cl -> S ;
|
|
QuestCl : Cl -> S ;
|
|
PredVP : NP -> VP -> Cl ;
|
|
CompAP : AP -> VP ;
|
|
John : NP ;
|
|
Old : AP ;
|
|
}
|