mirror of
https://github.com/GrammaticalFramework/gf-rgl.git
synced 2026-05-31 02:38:55 -06:00
(Dut) Replace "," with bindComma in several places
This commit is contained in:
@@ -178,7 +178,7 @@ concrete NounDut of Noun = CatDut ** open ResDut, Prelude in {
|
||||
} ;
|
||||
|
||||
RelNP np rs = heavyNP {
|
||||
s = \\c => np.s ! c ++ "," ++ rs.s ! np.a.g ! np.a.n ;
|
||||
s = \\c => np.s ! c ++ embedInCommas (rs.s ! np.a.g ! np.a.n) ;
|
||||
a = np.a
|
||||
} ;
|
||||
|
||||
|
||||
@@ -29,6 +29,6 @@ concrete PhraseDut of Phrase = CatDut ** open Prelude, ResDut in
|
||||
PConjConj conj = ss (conj.s2) ;
|
||||
|
||||
NoVoc = {s = []} ;
|
||||
VocNP np = {s = "," ++ np.s ! NPNom} ;
|
||||
VocNP np = {s = bindComma ++ np.s ! NPNom} ;
|
||||
|
||||
}
|
||||
|
||||
@@ -68,10 +68,10 @@ concrete SentenceDut of Sentence = CatDut ** open ResDut, Prelude in {
|
||||
} ;
|
||||
|
||||
AdvS a s = {s = \\o => a.s ++ s.s ! Inv} ;
|
||||
ExtAdvS a s = {s = \\o => a.s ++ "," ++ s.s ! Inv} ;
|
||||
ExtAdvS a s = {s = \\o => a.s ++ bindComma ++ s.s ! Inv} ;
|
||||
|
||||
RelS s r = {s = \\o => s.s ! o ++ "," ++ r.s ! Neutr ! Sg} ;
|
||||
RelS s r = {s = \\o => s.s ! o ++ bindComma ++ r.s ! Neutr ! Sg} ;
|
||||
|
||||
SSubjS a s b = {s = \\o => a.s ! o ++ "," ++ s.s ++ b.s ! Sub} ;
|
||||
SSubjS a s b = {s = \\o => a.s ! o ++ bindComma ++ s.s ++ b.s ! Sub} ;
|
||||
|
||||
}
|
||||
|
||||
@@ -41,7 +41,7 @@ lin
|
||||
MkSymb s = s ;
|
||||
|
||||
BaseSymb = infixSS "en" ;
|
||||
ConsSymb = infixSS "," ;
|
||||
ConsSymb = infixSS bindComma ;
|
||||
|
||||
oper
|
||||
artDef : Number -> Gender -> Str = \n,g -> case <n,g> of {<Sg,Neutr> => "het" ; _ => "de"} ;
|
||||
|
||||
Reference in New Issue
Block a user