mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-16 16:29:32 -06:00
26 lines
387 B
CFEngine3
26 lines
387 B
CFEngine3
NP ::= Det CN ;
|
|
Det ::= Predets Quants ;
|
|
|
|
Predets ::= ;
|
|
|
|
Predets ::= "only" | "just" ;
|
|
Quants ::= "this" | "my" | "one" | "the" | "a" | "every" | "some" ;
|
|
|
|
NP ::= Detp CNp ;
|
|
Detp ::= Predet Quant Num ;
|
|
|
|
Predet ::= ;
|
|
Quant ::= ;
|
|
Num ::= ;
|
|
|
|
Predet ::= "all" | "only" | "just" ;
|
|
|
|
Quant ::= "these" | "my" | "many" | "some" ;
|
|
|
|
Num ::= "four" ;
|
|
|
|
CNp ::= "sons" ;
|
|
CN ::= "son" ;
|
|
|
|
--
|