fez-lisp 1.3.24 → 1.3.25
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/macros.js +2 -2
package/package.json
CHANGED
package/src/macros.js
CHANGED
@@ -675,10 +675,10 @@ export const replaceQuotes = (source) =>
|
|
675
675
|
.replaceAll(/\`\(/g, `(${SUGGAR.CREATE_LIST} `)
|
676
676
|
.replaceAll(/\(\)/g, `(${KEYWORDS.CREATE_ARRAY})`)
|
677
677
|
.replaceAll(/\[\]/g, `(${KEYWORDS.CREATE_ARRAY})`)
|
678
|
-
.replaceAll(/\{\}/g, `(${
|
678
|
+
.replaceAll(/\{\}/g, `(${SUGGAR.CREATE_LIST})`)
|
679
679
|
.replaceAll(/\[/g, `(${KEYWORDS.CREATE_ARRAY} `)
|
680
680
|
.replaceAll(/\]/g, ')')
|
681
|
-
.replaceAll(/\{/g, `(${
|
681
|
+
.replaceAll(/\{/g, `(${SUGGAR.CREATE_LIST} `)
|
682
682
|
.replaceAll(/\}/g, ')')
|
683
683
|
|
684
684
|
export const replaceParens = (source) =>
|