mirror of
https://github.com/GrammaticalFramework/comp-syntax-gu-mlt.git
synced 2026-02-08 22:41:05 -07:00
16 lines
330 B
Plaintext
16 lines
330 B
Plaintext
concrete FactsGer of Facts = open SyntaxGer, SymbolicGer in {
|
|
|
|
lincat
|
|
Fact = Cl ;
|
|
Object = NP ;
|
|
Attribute = CN ;
|
|
Value = NP ;
|
|
Name = NP ;
|
|
|
|
lin
|
|
AttributeFact attr obj val = mkCl (mkNP the_Det (mkCN attr (mkAdv possess_Prep obj))) val ;
|
|
NameObject name = name ;
|
|
NameValue name = name ;
|
|
IntValue int = symb int ;
|
|
|
|
} |