mirror of
https://github.com/GrammaticalFramework/comp-syntax-gu-mlt.git
synced 2026-04-08 21:29:32 -06:00
21 lines
319 B
Plaintext
21 lines
319 B
Plaintext
abstract Nano = {
|
|
|
|
cat
|
|
S ; NP ; VP ; CN ;
|
|
Det ; Pron ; A ; N ; V2 ;
|
|
|
|
fun
|
|
PredVPS : NP -> VP -> S ;
|
|
ComplV2 : V2 -> NP -> VP ;
|
|
DetCN : Det -> CN -> NP ;
|
|
AdjCN : A -> CN -> CN ;
|
|
UseCN : N -> CN ;
|
|
UsePron : Pron -> NP ;
|
|
|
|
the_Det : Det ;
|
|
black_A : A ;
|
|
cat_N : N ;
|
|
see_V2 : V2 ;
|
|
we_Pron : Pron ;
|
|
|
|
} |