fez-lisp 1.5.25 → 1.5.27

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.5.25",
5
+ "version": "1.5.27",
6
6
  "type": "module",
7
7
  "main": "index.js",
8
8
  "keywords": [
package/src/check.js CHANGED
@@ -441,10 +441,10 @@ export const typeCheck = (ast) => {
441
441
  }
442
442
  }
443
443
  }
444
- // if (env[SCOPE_NAME]) {
445
- // const key = withScope(name, scope)
446
- // if (errorStack.has(key)) errorStack.delete(key)
447
- // }
444
+ if (env[SCOPE_NAME]) {
445
+ const key = withScope(name, scope)
446
+ if (errorStack.has(key)) errorStack.delete(key)
447
+ }
448
448
  check(rest.at(-1), env, scope)
449
449
  }
450
450
  }