chore: parseQuotWithCurrentStage and quotPrecheck

This commit is contained in:
Sebastian Ullrich 2022-11-04 10:55:56 +01:00
parent 140d10819d
commit f5c13f9db8

View file

@ -9,6 +9,10 @@ options get_default_options() {
opts = opts.update({"interpreter", "prefer_native"}, false);
// switch to `true` for changing built-in parsers used in quotations
opts = opts.update({"internal", "parseQuotWithCurrentStage"}, false);
// toggling `parseQuotWithCurrentStage` may also require toggling the following option if macros/syntax
// with custom precheck hooks were affected
opts = opts.update({"quotPrecheck"}, true);
opts = opts.update({"pp", "rawOnError"}, true);
#endif
return opts;