mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-05-17 15:12:50 -06:00
The stand-alone form of no_Quant should be "none", not "no".
This commit is contained in:
@@ -21,9 +21,11 @@ resource MorphoEng = open Prelude, (Predef=Predef), ResEng in {
|
||||
sp = regGenitiveS s ;
|
||||
n = n} ;
|
||||
|
||||
mkQuant : Str -> Str -> {s : Bool => Number => Str; sp : Bool => Number => Case => Str } = \x,y -> {
|
||||
s = \\_ => table { Sg => x ; Pl => y } ;
|
||||
sp = \\_ => table { Sg => regGenitiveS x ; Pl => regGenitiveS y }
|
||||
mkQuant : Str -> Str -> {s : Bool => Number => Str; sp : Bool => Number => Case => Str } = \sg,pl -> mkQuant4 sg pl sg pl ;
|
||||
|
||||
mkQuant4 : Str -> Str -> Str -> Str -> {s : Bool => Number => Str; sp : Bool => Number => Case => Str } = \sg,pl,sg',pl' -> {
|
||||
s = \\_ => table { Sg => sg ; Pl => pl } ;
|
||||
sp = \\_ => table { Sg => regGenitiveS sg' ; Pl => regGenitiveS pl' }
|
||||
} ;
|
||||
|
||||
regGenitiveS : Str -> Case => Str = \s ->
|
||||
|
||||
Reference in New Issue
Block a user