Codebase list node-jison / upstream/0.4.17+dfsg examples / basic2.jison
upstream/0.4.17+dfsg

Tree @upstream/0.4.17+dfsg (Download .tar.gz)

basic2.jison @upstream/0.4.17+dfsgraw · history · blame

1
2
3
4
5
6
7
8
/* description: Basic grammar that contains a nullable A nonterminal. */

%%

A
    : A x
    | 
    ;