fez-lisp 1.5.157 → 1.5.158

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 +1 -2
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.157",
5
+ "version": "1.5.158",
6
6
  "type": "module",
7
7
  "main": "index.js",
8
8
  "keywords": [
package/src/check.js CHANGED
@@ -1657,8 +1657,7 @@ export const typeCheck = (ast) => {
1657
1657
  }
1658
1658
  }
1659
1659
  }
1660
- const copy = JSON.parse(JSON.stringify(ast))
1661
- check(copy, SPECIAL_FORM_TYPES, copy)
1660
+ check(ast, SPECIAL_FORM_TYPES, ast)
1662
1661
  while (stack.length) stack.cut().fn()
1663
1662
  return [ast, Types]
1664
1663
  }