diff --git a/nomsu_decompiler.lua b/nomsu_decompiler.lua index 142229a..6db2ec4 100644 --- a/nomsu_decompiler.lua +++ b/nomsu_decompiler.lua @@ -239,7 +239,7 @@ tree_to_nomsu = function(tree) return false end end - return not recurse(prev_line):is_multiline() + return not tree_to_nomsu(prev_line):is_multiline() end for chunk_no, chunk in ipairs(tree) do if chunk_no > 1 then diff --git a/nomsu_decompiler.moon b/nomsu_decompiler.moon index 380bbca..f44b628 100644 --- a/nomsu_decompiler.moon +++ b/nomsu_decompiler.moon @@ -179,7 +179,7 @@ tree_to_nomsu = (tree)-> if prev_line.stub == "use" then return line.stub == "use" if prev_line.stub == "test" then return true if line.stub == "test" then return false - return not recurse(prev_line)\is_multiline! + return not tree_to_nomsu(prev_line)\is_multiline! for chunk_no, chunk in ipairs tree nomsu\append "\n\n#{("~")\rep(80)}\n\n" if chunk_no > 1