Files
2021-04-07 19:25:18 -04:00

9 lines
275 B
Plaintext
Vendored

first_quote_symbol = "'" .
second_quote_symbol = '"' .
(* escaped_quote_symbol tests backticks, which does not interfere
* with backslashes. It has precedent in some language
* specifications.
*)
escaped_quote_symbol = `\` ( first_quote_symbol | second_quote_symbol ) .