fez-lisp 1.5.121 → 1.5.122

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/check.js +0 -1
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.5.121",
5
+ "version": "1.5.122",
6
6
  "type": "module",
7
7
  "main": "index.js",
8
8
  "keywords": [
package/src/check.js CHANGED
@@ -1160,7 +1160,6 @@ export const typeCheck = (ast) => {
1160
1160
  ) {
1161
1161
  // REFF ASSIGMENT
1162
1162
  setTypeRef(env[rest[i][VALUE]][STATS], args[i][STATS])
1163
- setReturnRef(env[rest[i][VALUE]][STATS], args[i][STATS])
1164
1163
  } else if (
1165
1164
  env[rest[i][VALUE]] &&
1166
1165
  !isUnknownType(args[i][STATS]) &&