fez-lisp 1.1.54 → 1.1.55
Sign up to get free protection for your applications and to get access to all the features.
- 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:
|