(Ara) misc small fixes/comments

This commit is contained in:
Inari Listenmaa
2018-12-26 14:34:15 +01:00
parent 8b016f35bc
commit f85e64a90d
3 changed files with 7 additions and 3 deletions
+5 -2
View File
@@ -6,8 +6,11 @@ flags optimize = all ;--noexpand;
oper
mkDet : Str -> Number -> State -> Det
= \word,num,state -> baseQuant **
{ s = \\_,_,c => word + caseTbl ! c ;
= mkDetDecl True ;
mkDetDecl : Bool -> Str -> Number -> State -> Det
= \decl,word,num,state -> baseQuant **
{ s = \\_,_,c => word + if_then_Str decl (caseTbl ! c) [] ;
n = numberToSize num;
d = state; --only Const is used now. check StructuralAra
} ;