fez-lisp 1.2.53 → 1.2.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.2.53",
5
+ "version": "1.2.55",
6
6
  "type": "module",
7
7
  "main": "index.js",
8
8
  "keywords": [
@@ -233,7 +233,7 @@ export const keywords = {
233
233
  throw new RangeError(
234
234
  `Incorrect number of arguments for (${
235
235
  KEYWORDS.ANONYMOUS_FUNCTION
236
- } ${params.map((x) => x[VALUE]).join(' ')}) are provided. (expects ${
236
+ } ${stringifyArgs(params)}) are provided. (expects ${
237
237
  params.length
238
238
  } but got ${props.length}) (${
239
239
  KEYWORDS.ANONYMOUS_FUNCTION
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)