blob: b4e9f3a7fda6944fbcb9a30405d9f34310f0d322 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
--# -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;
}
|