ParadigmsEng.verbalN for default verbal nouns adding -ing to verbs

This commit is contained in:
aarneranta
2020-09-25 15:00:53 +02:00
parent 08896eb34b
commit bf3609c083

View File

@@ -99,6 +99,12 @@ oper
mkN : Str -> N -> N -- e.g. baby + boom
} ;
--3 Verbal nouns
--
-- A systematic way to form a verbal noun is the ending "-ing".
verbalN : V -> N ; -- e.g. sing -> singing
--3 Relational nouns
@@ -406,6 +412,8 @@ mkInterj : Str -> Interj
compoundN s n = lin N {s = \\x,y => s ++ n.s ! x ! y ; g=n.g} ;
verbalN v = regN (v.s ! VPresPart) ;
mkPN = overload {
mkPN : Str -> PN = regPN ;
mkPN : N -> PN = nounPN