mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-30 14:52:51 -06:00
complete RGL implementation for Mongolian by Nyamsuren Erdenebadrakh
This commit is contained in:
31
lib/src/mongolian/AdverbMon.gf
Normal file
31
lib/src/mongolian/AdverbMon.gf
Normal file
@@ -0,0 +1,31 @@
|
||||
--# -path=.:../abstract:../common:../../prelude
|
||||
|
||||
concrete AdverbMon of Adverb = CatMon ** open ResMon, Prelude in {
|
||||
|
||||
flags coding=utf8 ;
|
||||
|
||||
lin
|
||||
PositAdvAdj a = a ;
|
||||
|
||||
ComparAdvAdj cadv a np = {
|
||||
s = (appCompl cadv.c2 np.s) ++ cadv.s ++ a.s
|
||||
} ;
|
||||
|
||||
ComparAdvAdjS cadv a s = {
|
||||
s = s.s ! (Part Object) ++ cadv.c2.s ++ cadv.s ++ a.s
|
||||
} ;
|
||||
|
||||
PrepNP prep np = {s = np.s ! prep.rc ++ prep.s} ;
|
||||
|
||||
AdAdv = cc2 ;
|
||||
|
||||
PositAdAAdj a = a ;
|
||||
|
||||
SubjS subj s = {s = subj.s ++ s.s ! Sub Condl} ;
|
||||
|
||||
AdnCAdv cadv = {
|
||||
s = cadv.s ++ cadv.c2.s
|
||||
} ;
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user