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

@@ -196,7 +196,7 @@ AT_DATA_GRAMMAR([[input.y]],
]AT_YYLEX_DECLARE[
}
%%
exp:;
exp: /* empty */;
%%
]AT_YYERROR_DEFINE[
]AT_YYLEX_DEFINE[

View File

@@ -205,7 +205,7 @@ AT_DATA([input.yy],
%debug
%defines
%%
exp:;
exp: /* empty */;
%%
]AT_YYERROR_DEFINE[
]])

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])

View File

@@ -114,7 +114,7 @@ AT_DATA([input.y],
%%
exp: foo { $$; } foo { $2; } foo
| foo
| /* Empty. */
| /* empty. */
;
]])
@@ -132,7 +132,7 @@ input.y:6.6-8: warning: type clash on default action: <bar> != <> [-Wother]
| foo
^^^
input.y:7.5: warning: empty rule for typed nonterminal, and no action [-Wother]
| /* Empty. */
| /* empty. */
^
]])
@@ -908,7 +908,7 @@ m4_define([AT_CHECK_REQUIRE],
AT_DATA_GRAMMAR([input.y],
[[%require "$1";
%%
empty_file:;
empty_file: /* empty */;
]])
AT_BISON_CHECK([-o input.c input.y], $2, [], ignore)
AT_CLEANUP
@@ -1722,7 +1722,7 @@ m4_pushdef([AT_TEST],
[AT_DATA([[input.y]],
[[$1
%%
exp:;
exp: /* empty */;
]])
AT_BISON_CHECK([[$2 input.y]], [[1]], [[]],
[[$3: error: '%name-prefix' and '%define api.prefix' cannot be used together