mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-23 11:42:49 -06:00
42 lines
446 B
Plaintext
42 lines
446 B
Plaintext
--# -path=.:../Common:prelude:resource-1.0/abstract:resource-1.0/common
|
|
|
|
abstract TramLexicon = Cat ** {
|
|
|
|
fun
|
|
|
|
-- The functions should be in alphabetical order
|
|
-- within each category
|
|
|
|
-- Adjectives
|
|
short_A : A;
|
|
|
|
-- Conjunctions
|
|
and_then_Conj : Conj;
|
|
|
|
-- Nouns
|
|
route_N,
|
|
stop_N,
|
|
way_N : N;
|
|
|
|
-- Prepositiona
|
|
from_Prep,
|
|
to_Prep : Prep;
|
|
|
|
-- Verbs-1
|
|
help_V,
|
|
restart_V : V;
|
|
|
|
-- Verbs-2
|
|
go_from_V2,
|
|
go_to_V2,
|
|
find_V2,
|
|
findout_V2,
|
|
take_V2 : V2;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|