Special form TODOs

This commit is contained in:
2020-11-14 18:46:41 -07:00
parent 45ac7a53a3
commit ebed21484d

View File

@@ -26,6 +26,28 @@ class SpecialForms {
// TODO first through tenth // TODO first through tenth
// TODO special form for object declaration
// TODO special form for new
// TODO special form for assignment
// TODO special form for lambda
// TODO special form for for loop
// TODO special form for list comprehension
// TODO special form for while loop
// TODO special form for do-while loop
// TODO special form for switch
// TODO special form for try
// TODO special form for throw
map["<"] = foldComparison("_min"); map["<"] = foldComparison("_min");
map["<="] = foldComparison("min"); map["<="] = foldComparison("min");
map[">"] = foldComparison("_max"); map[">"] = foldComparison("_max");