File tree Expand file tree Collapse file tree 1 file changed +14
-16
lines changed Expand file tree Collapse file tree 1 file changed +14
-16
lines changed Original file line number Diff line number Diff line change @@ -48,24 +48,22 @@ export const atomWithAdditionalQuotationRequirements = (
4848 additionalQuoteRequiringComponent : Parser < unknown > ,
4949) =>
5050 optionallySurroundedByParentheses (
51- lazy ( ( ) =>
52- oneOf ( [
53- map (
54- oneOrMore (
55- butNot (
56- anySingleCharacter ,
57- oneOf ( [
58- ...atomComponentsRequiringQuotation ,
59- additionalQuoteRequiringComponent ,
60- ] ) ,
61- 'a character sequence requiring quotation' ,
62- ) ,
51+ oneOf ( [
52+ map (
53+ oneOrMore (
54+ butNot (
55+ anySingleCharacter ,
56+ oneOf ( [
57+ ...atomComponentsRequiringQuotation ,
58+ additionalQuoteRequiringComponent ,
59+ ] ) ,
60+ 'a character sequence requiring quotation' ,
6361 ) ,
64- characters => characters . join ( '' ) ,
6562 ) ,
66- quotedAtomParser ,
67- ] ) ,
68- ) ,
63+ characters => characters . join ( '' ) ,
64+ ) ,
65+ quotedAtomParser ,
66+ ] ) ,
6967 )
7068
7169export const unquotedAtomParser = map (
You can’t perform that action at this time.
0 commit comments