fez-lisp 1.6.54 → 1.6.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/check.js +2 -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.6.54",
5
+ "version": "1.6.55",
6
6
  "type": "module",
7
7
  "main": "index.js",
8
8
  "keywords": [
package/src/check.js CHANGED
@@ -711,7 +711,7 @@ const resolveSetter = (first, rest, env, stack) => {
711
711
  break
712
712
  case APPLY:
713
713
  if (env[right[VALUE]]) {
714
- if (right[VALUE] === 'array:get') {
714
+ if (right[VALUE] === KEYWORDS.CREATE_ARRAY) {
715
715
  current[STATS][TYPE_PROP][1] = initArrayType({
716
716
  rem: rest.at(-1),
717
717
  env
@@ -848,7 +848,7 @@ const resolveReturnType = ({
848
848
  break
849
849
  default:
850
850
  {
851
- if (returns[VALUE] === KEYWORDS.GET_ARRAY)
851
+ if (returns[VALUE] === 'array:get')
852
852
  resolveGetter({ rem, prop, name, env })
853
853
  // if (
854
854
  // !GETTERS_SET.has(name) &&