mirror of
https://github.com/GrammaticalFramework/comp-syntax-gu-mlt.git
synced 2026-04-08 21:29:32 -06:00
33 lines
626 B
Plaintext
33 lines
626 B
Plaintext
concrete NanoEng of Nano = {
|
|
|
|
lincat
|
|
S = Str ;
|
|
NP, Pron = {s : Case => Str ; n : Number} ;
|
|
VP, V2 = Number => Str ;
|
|
CN, Det = Str ;
|
|
A, N = Str ;
|
|
|
|
lin
|
|
PredVPS np vp = np.s ! Nom ++ vp ! np.n ;
|
|
ComplV2 v2 np = table {n => v2 ! n ++ np.s ! Acc} ;
|
|
DetCN det cn =
|
|
{s = table {c => det ++ cn} ; n = Sg} ;
|
|
AdjCN a cn = a ++ cn ;
|
|
UseCN n = n ;
|
|
UsePron pron = pron ;
|
|
|
|
the_Det = "the" ;
|
|
black_A = "black" ;
|
|
cat_N = "cat" ;
|
|
see_V2 =
|
|
table {Sg => "sees" ; Pl => "see"} ;
|
|
we_Pron = {
|
|
s = table {Nom => "we" ; Acc => "us"} ;
|
|
n = Pl
|
|
} ;
|
|
|
|
param
|
|
Number = Sg | Pl ;
|
|
Case = Nom | Acc ;
|
|
|
|
} |