From d82c4f85d8cdb1d4cdf97e90b2715d2fb06b4bef Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 15 Jan 2018 15:50:18 -0800 Subject: [PATCH] Added support for translating comments instead of dropping them. --- nomsu.lua | 10 ++++++++++ nomsu.moon | 9 +++++++++ nomsu.peg | 4 ++-- 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/nomsu.lua b/nomsu.lua index 587bc22..0df32fb 100644 --- a/nomsu.lua +++ b/nomsu.lua @@ -510,6 +510,12 @@ do elseif "Nomsu" == _exp_0 then local inside, inline = self:tree_to_nomsu(tree.value, force_inline) return "\\" .. tostring(inside), inline + elseif "Comment" == _exp_0 then + if tree.value:find("\n") then + return "#.." .. tostring(self:indent(tree.value)), false + else + return "#" .. tostring(tree.value), false + end elseif "Block" == _exp_0 then if force_inline then return "(:" .. tostring(concat((function() @@ -706,6 +712,10 @@ do return { statements = concat(lua_bits, "\n") } + elseif "Comment" == _exp_0 then + return { + statements = "--" .. tree.value:gsub("\n", "\n--") + } elseif "Nomsu" == _exp_0 then return { expr = "nomsu:parse(" .. tostring(repr(tree.value.src)) .. ", " .. tostring(repr(tree:get_line_no())) .. ").value[1]" diff --git a/nomsu.moon b/nomsu.moon index 054d907..bc7aa22 100755 --- a/nomsu.moon +++ b/nomsu.moon @@ -368,6 +368,12 @@ class NomsuCompiler inside, inline = @tree_to_nomsu(tree.value, force_inline) return "\\#{inside}", inline + when "Comment" + if tree.value\find("\n") + return "#..#{@indent tree.value}", false + else + return "##{tree.value}", false + when "Block" if force_inline return "(:#{concat([@tree_to_nomsu(v, true) for v in *tree.value], "; ")})", true @@ -504,6 +510,9 @@ class NomsuCompiler if lua.expr then insert lua_bits, "#{lua.expr};" return statements:concat(lua_bits, "\n") + when "Comment" + return statements:"--"..tree.value\gsub("\n","\n--") + when "Nomsu" return expr:"nomsu:parse(#{repr tree.value.src}, #{repr tree\get_line_no!}).value[1]" diff --git a/nomsu.peg b/nomsu.peg index 9920665..0011924 100644 --- a/nomsu.peg +++ b/nomsu.peg @@ -92,8 +92,8 @@ dict_line: inline_dict_item: {| {:dict_key: inline_expression / word :} %ws* "=" %ws* {:dict_value: inline_functioncall / inline_expression :} |} -block_comment: "#.." [^%nl]* (%nl (%ws* &%nl))* %nl %indented [^%nl]+ (%nl ((%ws* ((!.) / &%nl)) / (!%dedented [^%nl]+)))* -line_comment: "#" [^%nl]* +block_comment(Comment): "#.." { [^%nl]* (%nl (%ws* &%nl))* %nl %indented [^%nl]+ (%nl ((%ws* ((!.) / &%nl)) / (!%dedented [^%nl]+)))* } +line_comment(Comment): "#" { [^%nl]* } eol: %ws* line_comment? (!. / &%nl) ignored_line: (%nodented (block_comment / line_comment)) / (%ws* (!. / &%nl))