mirror of
https://github.com/GrammaticalFramework/gf-rgl.git
synced 2026-05-27 17:08:54 -06:00
added ParadigmsFin.compoundA, totally different from prefixA (as now documented)
This commit is contained in:
@@ -199,7 +199,11 @@ oper
|
||||
invarA : Str -> A -- invariant adjective, e.g. "kelpo"
|
||||
= \s -> lin A {s = \\_,_ => s ; h = Back ; p = [] ; hasPrefix = False} ; ----- stemming adds bogus endings
|
||||
|
||||
prefixA : Str -> A -> A = \pr,a -> a ** {
|
||||
compoundA : Str -> A -> A -- prefix glued to adjective, e.g. "hevos"+"vetoinen"
|
||||
= \s,a -> lin A {s = \\d,c => s + a.s ! d ! c ; h = a.h ; p = s + a.p ; hasPrefix = a.hasPrefix} ;
|
||||
|
||||
prefixA : Str -> A -> A -- in modifying use, an uninflected glued prefix, e.g. "sähkö" for "sähköinen"
|
||||
= \pr,a -> a ** {
|
||||
p = pr ;
|
||||
hasPrefix = True
|
||||
} ;
|
||||
|
||||
Reference in New Issue
Block a user