Skip to content

Commit

Permalink
added ExtAdvVP, AdvVPSlash, AdVVPSlash
Browse files Browse the repository at this point in the history
  • Loading branch information
krangelov committed Jul 24, 2024
1 parent 4f05d56 commit 9b12c13
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions src/turkish/VerbTur.gf
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,22 @@ concrete VerbTur of Verb = CatTur ** open Prelude, ResTur, SuffixTur, HarmonyTur
compl = vp.compl ++ adv.s ;
} ;

ExtAdvVP vp adv = vp ** {
compl = vp.compl ++ adv.s ;
} ;

AdVVP adv vp = vp ** {
s = \\vf => adv.s ++ vp.s ! vf ;
} ;

AdvVPSlash vp adv = vp ** {
compl = vp.compl ++ adv.s ;
} ;

AdVVPSlash adv vp = vp ** {
compl = vp.compl ++ adv.s ;
} ;

PassV2 = variants {} ;

oper
Expand Down

0 comments on commit 9b12c13

Please sign in to comment.