fez-lisp 1.5.164 → 1.5.166
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/lib/baked/std-T.js +1 -1
- package/lib/baked/std.js +1 -1
- package/package.json +1 -1
- package/src/check.js +8 -8
package/package.json
CHANGED
package/src/check.js
CHANGED
@@ -1052,10 +1052,10 @@ export const typeCheck = (ast, ctx = SPECIAL_FORM_TYPES) => {
|
|
1052
1052
|
expected[STATS][SIGNATURE]
|
1053
1053
|
}) the (${KEYWORDS.ANONYMOUS_FUNCTION}) argument of (${
|
1054
1054
|
first[VALUE]
|
1055
|
-
}) at position (${i}). Expected (${
|
1056
|
-
|
1057
|
-
)}) but got (${
|
1058
|
-
|
1055
|
+
}) at position (${i}). Expected (${formatSubType(
|
1056
|
+
getReturns(expected[STATS])
|
1057
|
+
)}) but got (${formatSubType(
|
1058
|
+
getReturns(actual[STATS])
|
1059
1059
|
)}) (${stringifyArgs(exp)}) (check #779)`
|
1060
1060
|
)
|
1061
1061
|
else if (!equalSubReturns(expected[STATS], actual[STATS]))
|
@@ -1064,10 +1064,10 @@ export const typeCheck = (ast, ctx = SPECIAL_FORM_TYPES) => {
|
|
1064
1064
|
expected[STATS][SIGNATURE]
|
1065
1065
|
}) the (${KEYWORDS.ANONYMOUS_FUNCTION}) argument of (${
|
1066
1066
|
first[VALUE]
|
1067
|
-
}) at position (${i}). Expected (${
|
1068
|
-
|
1069
|
-
)}) but got (${
|
1070
|
-
|
1067
|
+
}) at position (${i}). Expected (${formatSubType(
|
1068
|
+
getReturns(expected[STATS])
|
1069
|
+
)}) but got (${formatSubType(
|
1070
|
+
getReturns(actual[STATS])
|
1071
1071
|
)}) (${stringifyArgs(exp)}) (check #783)`
|
1072
1072
|
)
|
1073
1073
|
else
|