mirror of
https://github.com/GrammaticalFramework/comp-syntax-gu-mlt.git
synced 2026-02-08 22:41:05 -07:00
17 lines
322 B
Plaintext
17 lines
322 B
Plaintext
concrete FactsSwe of Facts =
|
|
open SyntaxSwe, SymbolicSwe, (E=ExtendSwe) in {
|
|
|
|
lincat
|
|
Fact = Cl ;
|
|
Object = NP ;
|
|
Attribute = CN ;
|
|
Value = NP ;
|
|
Name = NP ;
|
|
|
|
lin
|
|
AttributeFact attr obj val = mkCl (mkNP (E.GenNP obj) attr) val ;
|
|
NameObject name = name ;
|
|
NameValue name = name ;
|
|
IntValue int = symb int ;
|
|
|
|
} |