mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-23 03:32:51 -06:00
32 lines
609 B
Plaintext
32 lines
609 B
Plaintext
incomplete concrete SymbolRomance of Symbol =
|
|
CatRomance ** open Prelude, CommonRomance, ResRomance in {
|
|
|
|
lin
|
|
SymbPN i = {s = i.s ; g = Masc} ;
|
|
IntPN i = {s = i.s ; g = Masc} ;
|
|
FloatPN i = {s = i.s ; g = Masc} ;
|
|
|
|
CNIntNP cn i = {
|
|
s = \\c => cn.s ! Sg ++ i.s ;
|
|
a = agrP3 cn.g Sg ;
|
|
hasClit = False
|
|
} ;
|
|
CNSymbNP det cn xs = let g = cn.g in {
|
|
s = \\c => det.s ! g ! npform2case c ++ cn.s ! det.n ++ xs.s ;
|
|
a = agrP3 g det.n ;
|
|
hasClit = False
|
|
} ;
|
|
|
|
lincat
|
|
|
|
Symb, [Symb] = SS ;
|
|
|
|
lin
|
|
|
|
MkSymb s = s ;
|
|
|
|
BaseSymb = infixSS "et" ; ----
|
|
ConsSymb = infixSS "," ;
|
|
|
|
}
|