mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-12 22:39:31 -06:00
16 lines
414 B
Plaintext
16 lines
414 B
Plaintext
instance LexAttemptoGer of LexAttempto =
|
|
open ExtraGer, SyntaxGer, ParadigmsGer, ConstructX, IrregGer in {
|
|
|
|
oper
|
|
possible_A = mkA "möglich" ;
|
|
necessary_A = mkA "nötig" ;
|
|
own_A = mkA "eigen" ;
|
|
have_VV = SyntaxGer.must_VV ;
|
|
provably_Adv = mkAdv "beweisbar" ;
|
|
provable_A = mkA "beweisbar" ;
|
|
false_A = mkA "falsch" ;
|
|
|
|
genitiveNP np cn = mkNP (mkNP the_Art cn) (SyntaxGer.mkAdv possess_Prep np) ;
|
|
|
|
}
|