Skip to content

Commit

Permalink
add code in example to test #4 fix
Browse files Browse the repository at this point in the history
  • Loading branch information
GerHobbelt committed Jan 31, 2017
1 parent e2c1544 commit fce937c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions examples/test-unused-rules-reporting.jison
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,17 @@ expressions

unused_rule_1
: epsilon WORD WORD
{ $$ = $1 + $2 + $3; }
;

unused_rule_2
: expressions WORD
{ $$ = $1 + $2; }
;

unused_rule_3
: e WORD
{ $$ = $1 + $2; }
;

%%
Expand Down

0 comments on commit fce937c

Please sign in to comment.