tests: highlight empty right-hand sides

* tests/actions.at, tests/c++.at, tests/headers.at,
* tests/input.at: here.
This commit is contained in:
Akim Demaille
2013-01-25 12:01:10 +01:00
parent 597afd73d7
commit c7442984e3
4 changed files with 8 additions and 8 deletions

View File

@@ -41,7 +41,7 @@ AT_DATA_GRAMMAR([$1.y],
]AT_YYLEX_DECLARE_EXTERN[
%}
%%
dummy:;
dummy: /* empty */;
%%
#include <$1.h>
])
@@ -81,7 +81,7 @@ AT_DATA_GRAMMAR([input.y],
]AT_YYLEX_DEFINE[
%}
%%
exp:;
exp: /* empty */;
]])
AT_BISON_CHECK([--defines -o input.c input.y])