fez-lisp 1.1.54 → 1.1.55

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 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.1.54",
5
+ "version": "1.1.55",
6
6
  "type": "module",
7
7
  "main": "index.js",
8
8
  "keywords": [
@@ -859,6 +859,7 @@ export const deSuggar = (ast) => {
859
859
  inp = [rest[i].shift(), inp, ...rest[i]]
860
860
  }
861
861
  for (let i = 0; i < inp.length; ++i) exp[i] = inp[i]
862
+ deSuggar(exp)
862
863
  }
863
864
  break
864
865
  case KEYWORDS.LIST_TYPE:
@@ -870,6 +871,7 @@ export const deSuggar = (ast) => {
870
871
  temp = temp.at(-1)
871
872
  }
872
873
  temp.push([0, 'array'])
874
+ deSuggar(exp)
873
875
  }
874
876
  break
875
877
  case KEYWORDS.UNLESS: