mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-10 05:29:30 -06:00
60 lines
1.5 KiB
Plaintext
60 lines
1.5 KiB
Plaintext
concrete LexEng of Lex = CatEng ** open ResEng, Prelude in {
|
|
|
|
lin
|
|
walk_V = regV "walk" ;
|
|
help_V2 = regV "help" ** {c2 = []} ;
|
|
show_V3 = regV "show" ** {c2 = [] ; c3 = "to"} ;
|
|
want_VV = regV "want" ** {c2 = "to"} ;
|
|
claim_VS = regV "claim" ;
|
|
ask_VQ = regV "ask" ;
|
|
|
|
dog_N = regN "dog" ;
|
|
son_N2 = regN "son" ** {c2 = "of"} ;
|
|
way_N3 = regN "way" ** {c2 = "from" ; c3 = "to"} ;
|
|
|
|
warm_A = regA "warm" ;
|
|
close_A2 = regA "close" ** {c2 = "to"} ;
|
|
|
|
here_Adv = {s = "here"} ;
|
|
very_AdA = {s = "very"} ;
|
|
always_AdV = {s = "always"} ;
|
|
|
|
only_Predet = {s = "only"} ;
|
|
all_Predet = {s = "all"} ;
|
|
this_Quant = {s = "this" ; n = Sg} ;
|
|
these_Quant = {s = "these" ; n = Pl} ;
|
|
|
|
i_Pron = mkNP "I" "me" "my" Sg P1 ;
|
|
he_Pron = mkNP "he" "him" "his" Sg P3 ;
|
|
we_Pron = mkNP "we" "us" "our" Pl P1 ;
|
|
|
|
whoSg_IP = mkIP "who" "whom" "whose" Sg ;
|
|
whoPl_IP = mkIP "who" "whom" "whose" Pl ;
|
|
|
|
when_IAdv = {s = "when"} ;
|
|
where_IAdv = {s = "where"} ;
|
|
why_IAdv = {s = "why"} ;
|
|
|
|
whichSg_IDet = {s = "which" ; n = Sg} ;
|
|
whichPl_IDet = {s = "which" ; n = Pl} ;
|
|
|
|
forty_Numeral = {s = table {NCard => "forty" ; NOrd => "fortieth"} ; n = Pl} ;
|
|
|
|
in_Prep = {s = "in"} ;
|
|
of_Prep = {s = "of"} ;
|
|
|
|
and_Conj = {s = "and" ; n = Pl} ;
|
|
either7or_DConj = {s1 = "either" ; s2 = "or" ; n = Sg} ;
|
|
|
|
if_Subj = ss "if" ;
|
|
because_Subj = ss "because" ;
|
|
|
|
but_PConj = {s = "but"} ;
|
|
|
|
please_Voc = {s = "," ++ "please"} ;
|
|
|
|
more_CAdv = ss "more" ;
|
|
less_CAdv = ss "less" ;
|
|
|
|
}
|