1
0
forked from GitHub/gf-core

Android app sources in examples/app - read README for advice

This commit is contained in:
aarne
2014-04-02 21:34:40 +00:00
parent 0a8034c008
commit cae40d2b0e
14 changed files with 816 additions and 0 deletions

43
examples/app/App.gf Normal file
View File

@@ -0,0 +1,43 @@
abstract App =
-- modules in Grammar, excluding Structural
Tense,
Noun - [PPartNP], -- to be generalized
Adjective,
Numeral,
Conjunction,
Verb [
UseV,ComplVV,SlashV2a,ComplSlash,UseComp,CompAP,CompNP,CompAdv,CompCN
],
Adverb,
Phrase,
Sentence,
Question - [
ComplSlashIP,AdvQVP,AddAdvQVP,QuestQVP
],
Relative,
Idiom [NP, VP, Cl, Tense, ProgrVP, ExistNP],
Symbol [PN, Symb, String, CN, Card, NP, MkSymb, SymbPN, CNNumNP], ---- why only these?
Chunk,
---- Construction,
Extensions [
CompoundCN,AdAdV,UttAdV,ApposNP,
MkVPI, MkVPS, PredVPS, that_RP, who_RP
],
Dictionary,
Documentation
,Phrasebook
** {
flags
startcat=Phr ;
fun
PhrasePhr : Phrase -> Phr ;
Phrase_Chunk : Phrase -> Chunk ;
}