From 771007bc4dbcde1698fd86d87374df21651585a5 Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Fri, 9 Nov 2018 19:32:13 -0800 Subject: Fixed word clumping with linebreaks. --- nomsu_decompiler.moon | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'nomsu_decompiler.moon') diff --git a/nomsu_decompiler.moon b/nomsu_decompiler.moon index 69d9d76..474d61f 100644 --- a/nomsu_decompiler.moon +++ b/nomsu_decompiler.moon @@ -209,11 +209,12 @@ tree_to_nomsu = (tree)-> for i,bit in ipairs tree if type(bit) == "string" - clump_words = if type(tree[i-1]) == 'string' - is_operator(bit) != is_operator(tree[i-1]) - else bit == "'" - nomsu\append " " if i > 1 and not clump_words - nomsu\append bit + if next_space == " " + clump_words = if type(tree[i-1]) == 'string' + is_operator(bit) != is_operator(tree[i-1]) + else bit == "'" + next_space = "" if clump_words + nomsu\append next_space, bit next_space = nomsu\trailing_line_len! > MAX_LINE and " \\\n.." or " " else bit_nomsu = recurse(bit) -- cgit v1.2.3