diff --git a/lua-temp/TODO.md b/lua-temp/TODO.md index d4ece75..853472c 100644 --- a/lua-temp/TODO.md +++ b/lua-temp/TODO.md @@ -8,9 +8,9 @@ Progress of the Lua port: - [x] Functions - [x] Calling functions - [x] Calling functions with parameters -- [ ] Control flow - - [ ] Labels in Assembly - - [ ] Recursion +- [x] Control flow + - [x] Labels in Assembly + - [x] Recursion - [ ] Strings - [ ] From constants - [ ] Garbage collection diff --git a/lua-temp/tests.lua b/lua-temp/tests.lua index 586fd4b..165b9aa 100644 --- a/lua-temp/tests.lua +++ b/lua-temp/tests.lua @@ -92,7 +92,6 @@ do TEST "Parser: labels" } local found = assemble(source) - pprint(found) assert_eq(found, expected) end