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:
@ -131,6 +131,7 @@ functionlist:
|
|||||||
functionvalue:
|
functionvalue:
|
||||||
FWTOK_CMP {if (!define_function_rule(scanner, $1)){YYERROR;}}
|
FWTOK_CMP {if (!define_function_rule(scanner, $1)){YYERROR;}}
|
||||||
| FWTOK_STR {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:
|
optional:
|
||||||
|
Reference in New Issue
Block a user