mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-30 06:52:49 -06:00
19 lines
394 B
Plaintext
19 lines
394 B
Plaintext
concrete SentenceSlv of Sentence = CatSlv ** open Prelude, ResSlv in {
|
|
|
|
lin
|
|
PredVP np vp = mkClause (np.s ! Nom) np.a np.isPron vp ;
|
|
|
|
ImpVP vp = {
|
|
s = \\p,g,n => vp.s ! p ! VImper2 n ++ vp.s2 ! {g=g; n=n; p=P2} ;
|
|
} ;
|
|
|
|
UseCl t p cl = {
|
|
s = t.s ++ p.s ++ cl.s ! t.t ! t.a ! p.p
|
|
} ;
|
|
UseQCl t p cl = {
|
|
s = t.s ++ p.s ++ cl.s ! t.t ! t.a ! p.p
|
|
} ;
|
|
|
|
}
|
|
|