fez-lisp 1.6.18 → 1.6.19

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 +0 -2
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.6.18",
5
+ "version": "1.6.19",
6
6
  "type": "module",
7
7
  "main": "index.js",
8
8
  "keywords": [
package/src/compiler.js CHANGED
@@ -248,9 +248,7 @@ const comp = (tree, Drill) => {
248
248
  .map((x) => (typeof x === 'number' && x < 0 ? ` ${x}` : x))
249
249
  .join(token)});`
250
250
  case KEYWORDS.MULTIPLICATION:
251
- return `(${parseArgs(tail, Drill, token)});`
252
251
  case KEYWORDS.DIVISION:
253
- return `(${parseArgs(tail, Drill, token)});`
254
252
  case KEYWORDS.ADDITION:
255
253
  return `(${parseArgs(tail, Drill, token)});`
256
254
  case KEYWORDS.BITWISE_AND: