fez-lisp 1.6.80 → 1.6.81

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.6.80",
5
+ "version": "1.6.81",
6
6
  "type": "module",
7
7
  "main": "index.js",
8
8
  "keywords": [
package/src/check.js CHANGED
@@ -1441,7 +1441,7 @@ export const typeCheck = (
1441
1441
  check(fn, env, scope)
1442
1442
  const expected = env[name]
1443
1443
  const actual = env[lambdaName]
1444
- if (expected[ARG_COUNT] !== actual[ARG_COUNT]) {
1444
+ if (expected[STATS][ARG_COUNT] !== actual[STATS][ARG_COUNT]) {
1445
1445
  throw new RangeError(
1446
1446
  `Incorrect number of arguments for (${
1447
1447
  expected[STATS][SIGNATURE]