mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-05-05 09:12:51 -06:00
- some missing functions (needed for Phrasebook) - few bug-fixes (verb paradigms) - naming, formatting, clean-up
19 lines
377 B
Plaintext
19 lines
377 B
Plaintext
--# -path=.:../common:../abstract
|
|
|
|
resource MakeStructuralLav = open CatLav, ParadigmsLav, ResLav, Prelude in {
|
|
|
|
flags
|
|
coding = utf8 ;
|
|
|
|
oper
|
|
mkSubj : Str -> Subj = \x ->
|
|
lin Subj {s = x} ;
|
|
|
|
--mkNP : Str -> ParadigmsLav.Number -> NP = \s,n ->
|
|
-- lin NP (regNP s n) ;
|
|
|
|
mkIDet : Str -> ParadigmsLav.Number -> IDet = \s,n ->
|
|
lin IDet {s = \\_ => s ; n = n} ;
|
|
|
|
}
|