1
0
forked from GitHub/gf-rgl

(Ara) Add paradigm for doubly weak FormIV + remove hamza from imperative prefix

This commit is contained in:
Inari Listenmaa
2018-11-07 11:31:07 +01:00
parent 2888073c44
commit 5c5cd125c9
3 changed files with 61 additions and 42 deletions
+7 -11
View File
@@ -351,7 +351,7 @@ resource ParadigmsAra = open
} in {
s =
case root.l of {
"و"|"ي" => (v2defective root).s;
#weak => (v2defective root).s;
_ => (v2sound root).s
};
lock_V = <>
@@ -368,16 +368,12 @@ resource ParadigmsAra = open
v4 =
\rootStr ->
let {
root = mkRoot3 rootStr
} in {
s =
case root.l of {
"و"|"ي" => (v4defective root).s;
_ => (v4sound root).s
};
lock_V = <>
};
let root : Root3 = mkRoot3 rootStr ;
verb : Verb = case rootStr of {
? + #hamza + #weak => v4doubleweak root ;
_ + #weak => v4defective root ;
_ => v4sound root } ;
in lin V verb ;
v5 =