@Retention(value=RUNTIME)
@Target(value=TYPE)
public @interface GrammarDef
Annotation GrammarDef defines parameters for created Parser class.
Field lrkLevel defines the maximum k for LALR(k) grammar. Most grammars are LALR(1).
Field maxStack defines the maximum depth for parser stack. Parser compiler calculates the maximum depth. It can be infinite. In that case maxStack is used.