mirror of
https://github.com/GrammaticalFramework/gf-rgl.git
synced 2026-07-01 11:38:34 -06:00
(Chi) Fix word order in RelNP
All the other changes are those needed due to changes in lincat of NP.
This commit is contained in:
@@ -11,7 +11,7 @@ concrete PhraseChi of Phrase = CatChi ** open Prelude, ResChi in {
|
||||
|
||||
UttIP ip = ip ;
|
||||
UttIAdv iadv = iadv ;
|
||||
UttNP np = np ;
|
||||
UttNP np = ss (linNP np) ;
|
||||
UttCN cn = cn ;
|
||||
UttAP ap = {s = ap.s!Attr} ;
|
||||
UttCard x = x ;
|
||||
@@ -23,6 +23,6 @@ concrete PhraseChi of Phrase = CatChi ** open Prelude, ResChi in {
|
||||
PConjConj conj = ss (conj.s ! CSent).s2 ;
|
||||
|
||||
NoVoc = {s = []} ;
|
||||
VocNP np = {s = np.s ++ chcomma} ; ---- ??
|
||||
VocNP np = {s = linNP np ++ chcomma} ; ---- ??
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user