fez-lisp 1.2.35 → 1.2.36

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/compiler.js +2 -1
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "fez-lisp",
3
3
  "description": "Lisp interpreted & compiled to JavaScript",
4
4
  "author": "AT290690",
5
- "version": "1.2.35",
5
+ "version": "1.2.36",
6
6
  "type": "module",
7
7
  "main": "index.js",
8
8
  "keywords": [
package/src/compiler.js CHANGED
@@ -130,7 +130,8 @@ const semiColumnEdgeCases = new Set([
130
130
  ';?',
131
131
  ',,',
132
132
  ';;',
133
- ';]'
133
+ ';]',
134
+ ';^'
134
135
  ])
135
136
  const parse = (Arguments, Drill) => Arguments.map((x) => compile(x, Drill))
136
137
  const parseArgs = (Arguments, Drill, separator = ',') =>