fez-lisp 1.1.54 → 1.1.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/interpreter.js +2 -0
package/package.json
CHANGED
package/src/interpreter.js
CHANGED
@@ -859,6 +859,7 @@ export const deSuggar = (ast) => {
|
|
859
859
|
inp = [rest[i].shift(), inp, ...rest[i]]
|
860
860
|
}
|
861
861
|
for (let i = 0; i < inp.length; ++i) exp[i] = inp[i]
|
862
|
+
deSuggar(exp)
|
862
863
|
}
|
863
864
|
break
|
864
865
|
case KEYWORDS.LIST_TYPE:
|
@@ -870,6 +871,7 @@ export const deSuggar = (ast) => {
|
|
870
871
|
temp = temp.at(-1)
|
871
872
|
}
|
872
873
|
temp.push([0, 'array'])
|
874
|
+
deSuggar(exp)
|
873
875
|
}
|
874
876
|
break
|
875
877
|
case KEYWORDS.UNLESS:
|