fez-lisp 1.2.53 → 1.2.54

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.2.53",
5
+ "version": "1.2.54",
6
6
  "type": "module",
7
7
  "main": "index.js",
8
8
  "keywords": [
package/src/utils.js CHANGED
@@ -406,20 +406,6 @@ export const deSuggar = (ast) => {
406
406
  }
407
407
  }
408
408
  break
409
- // case KEYWORDS.DEFINE_VARIABLE:
410
- // {
411
- // if (
412
- // rest[1] &&
413
- // rest[1][0] &&
414
- // rest[1][0][TYPE] === APPLY &&
415
- // rest[1][0][VALUE] === KEYWORDS.BLOCK
416
- // ) {
417
- // throw new SyntaxError(
418
- // `Can't use (${KEYWORDS.BLOCK}) in (${KEYWORDS.DEFINE_VARIABLE})`
419
- // )
420
- // }
421
- // }
422
- // break
423
409
  case SUGGAR.PIPE:
424
410
  {
425
411
  if (rest.length < 1)