MXS-1311: Allow backtick quoted values for function rules

The function rules can now take keywords as arguments if they are quoted
by backticks.
This commit is contained in:
Markus Mäkelä 2017-07-07 15:17:57 +03:00
parent f3e98745bd
commit 9c4711aac8

View File

@ -131,6 +131,7 @@ functionlist:
functionvalue:
FWTOK_CMP {if (!define_function_rule(scanner, $1)){YYERROR;}}
| FWTOK_STR {if (!define_function_rule(scanner, $1)){YYERROR;}}
| FWTOK_BTSTR {if (!define_function_rule(scanner, $1)){YYERROR;}}
;
optional: