mirror of
https://github.com/GrammaticalFramework/gf-rgl.git
synced 2026-09-03 17:57:04 -06:00
50 lines
1.4 KiB
Plaintext
50 lines
1.4 KiB
Plaintext
abstract Documentation = Cat ** {
|
|
|
|
-- Generating documentation for the library, for instance, inflection tables
|
|
-- AR 12/12/2013 under LGPL/BSD
|
|
|
|
cat
|
|
Inflection ; -- inflection table
|
|
Definition ;
|
|
Document ;
|
|
Tag ;
|
|
|
|
fun
|
|
InflectionN : N -> Inflection ;
|
|
InflectionN2 : N2 -> Inflection ;
|
|
InflectionN3 : N3 -> Inflection ;
|
|
InflectionPN : PN -> Inflection ;
|
|
InflectionLN : LN -> Inflection ;
|
|
InflectionGN : GN -> Inflection ;
|
|
InflectionSN : SN -> Inflection ;
|
|
InflectionA : A -> Inflection ;
|
|
InflectionA2 : A2 -> Inflection ;
|
|
InflectionV : V -> Inflection ;
|
|
InflectionV2 : V2 -> Inflection ;
|
|
InflectionVV : VV -> Inflection ;
|
|
InflectionVS : VS -> Inflection ;
|
|
InflectionVQ : VQ -> Inflection ;
|
|
InflectionVA : VA -> Inflection ;
|
|
InflectionV3 : V3 -> Inflection ;
|
|
InflectionV2V : V2V -> Inflection ;
|
|
InflectionV2S : V2S -> Inflection ;
|
|
InflectionV2Q : V2Q -> Inflection ;
|
|
InflectionV2A : V2A -> Inflection ;
|
|
InflectionAdv : Adv -> Inflection ;
|
|
InflectionAdV : AdV -> Inflection ;
|
|
InflectionAdA : AdA -> Inflection ;
|
|
InflectionAdN : AdN -> Inflection ;
|
|
InflectionPrep : Prep -> Inflection ;
|
|
InflectionCl : Cl -> Inflection ;
|
|
|
|
fun
|
|
NoDefinition : String -> Definition ;
|
|
MkDefinition : String -> String -> Definition ;
|
|
MkDefinitionEx : String -> String -> String -> Definition ;
|
|
|
|
fun
|
|
MkDocument : Definition -> Inflection -> String -> Document ;
|
|
MkTag : Inflection -> Tag ;
|
|
|
|
}
|