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.
- package/package.json +1 -1
- package/src/check.js +2 -2
package/package.json
CHANGED
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] ===
|
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] ===
|
851
|
+
if (returns[VALUE] === 'array:get')
|
852
852
|
resolveGetter({ rem, prop, name, env })
|
853
853
|
// if (
|
854
854
|
// !GETTERS_SET.has(name) &&
|