Re-added (..), which is necessary for long expressions as first arg to

an action.
This commit is contained in:
Bruce Hill 2018-04-28 15:20:48 -07:00
parent b54829de36
commit 23022dc88c
3 changed files with 71 additions and 63 deletions

View File

@ -1,4 +1,3 @@
local lfs = require('lfs')
local re = require('re') local re = require('re')
local lpeg = require('lpeg') local lpeg = require('lpeg')
lpeg.setmaxstack(10000) lpeg.setmaxstack(10000)
@ -41,7 +40,7 @@ FILE_CACHE = setmetatable({ }, {
if not (file) then if not (file) then
return nil return nil
end end
local contents = file:read("a"):sub(1, -2) local contents = file:read("a"):sub(1, -1)
file:close() file:close()
self[filename] = contents self[filename] = contents
return contents return contents
@ -362,41 +361,44 @@ do
end end
return self:run_lua(lua) return self:run_lua(lua)
end, end,
run_file = function(self, filename, compile_fn) run_file = function(self, path, compile_fn)
if compile_fn == nil then if compile_fn == nil then
compile_fn = nil compile_fn = nil
end end
local file_attributes = assert(lfs.attributes(filename), "File not found: " .. tostring(filename)) local ret = nil
if file_attributes.mode == "directory" then for filename in io.popen("find " .. path .. " -type f"):lines() do
for short_filename in lfs.dir(filename) do local _continue_0 = false
local full_filename = filename .. '/' .. short_filename repeat
local attr = lfs.attributes(full_filename) if filename:match("%.lua$") then
if attr.mode ~= "directory" and short_filename:match(".*%.nom") then local file = assert(FILE_CACHE[filename], "Could not find file: " .. tostring(filename))
self:run_file(full_filename, compile_fn) ret = self:run_lua(Lua(Source(filename), file))
elseif filename:match("%.nom$") then
if not self.skip_precompiled then
local lua_filename = filename:gsub("%.nom$", ".lua")
local file = FILE_CACHE[lua_filename]
if file then
ret = self:run_lua(Lua(Source(filename), file))
_continue_0 = true
break
end
end
local file = file or FILE_CACHE[filename]
if not file then
error("File does not exist: " .. tostring(filename), 0)
end
ret = self:run(Nomsu(Source(filename), file), compile_fn)
_continue_0 = true
break
else
error("Invalid filetype for " .. tostring(filename), 0)
end end
_continue_0 = true
until true
if not _continue_0 then
break
end end
return
end
if filename:match(".*%.lua") then
local file = assert(FILE_CACHE[filename], "Could not find file: " .. tostring(filename))
return self:run_lua(Lua(Source(filename), file))
end
if filename:match(".*%.nom") then
if not self.skip_precompiled then
local lua_filename = filename:gsub("%.nom$", ".lua")
local file = FILE_CACHE[lua_filename]
if file then
return self:run_lua(Lua(Source(filename), file))
end
end
local file = file or FILE_CACHE[filename]
if not file then
error("File does not exist: " .. tostring(filename), 0)
end
return self:run(Nomsu(Source(filename), file), compile_fn)
else
return error("Invalid filetype for " .. tostring(filename), 0)
end end
return ret
end, end,
use_file = function(self, filename) use_file = function(self, filename)
local loaded = self.environment.LOADED local loaded = self.environment.LOADED

View File

@ -30,7 +30,7 @@ inline_expression:
index_chain / noindex_inline_expression index_chain / noindex_inline_expression
indented_expression: indented_expression:
indented_text / indented_nomsu / indented_list / indented_dict indented_text / indented_nomsu / indented_list / indented_dict
/ (indent / ("(..)"? indent
(action dedent (action dedent
/ expression dedent / expression dedent
/ block (dedent / (("" -> "Error while parsing indented expression") => error))) / block (dedent / (("" -> "Error while parsing indented expression") => error)))

View File

@ -83,9 +83,12 @@ Tree("File", {
end end
local nomsu = Nomsu(self.source) local nomsu = Nomsu(self.source)
for i, line in ipairs(self.value) do for i, line in ipairs(self.value) do
line = assert(line:as_nomsu(), "Could not convert line to nomsu") line = assert(line:as_nomsu(nil, true), "Could not convert line to nomsu")
nomsu:append(line) nomsu:append(line)
if i < #self.value then if i < #self.value then
if tostring(line):match("\n") then
nomsu:append("\n")
end
nomsu:append("\n") nomsu:append("\n")
end end
end end
@ -141,7 +144,7 @@ Tree("Block", {
end end
local nomsu = Nomsu(self.source) local nomsu = Nomsu(self.source)
for i, line in ipairs(self.value) do for i, line in ipairs(self.value) do
line = assert(line:as_nomsu(), "Could not convert line to nomsu") line = assert(line:as_nomsu(nil, true), "Could not convert line to nomsu")
nomsu:append(line) nomsu:append(line)
if i < #self.value then if i < #self.value then
nomsu:append("\n") nomsu:append("\n")
@ -284,10 +287,13 @@ Tree("Action", {
end end
return concat(bits, " ") return concat(bits, " ")
end, end,
as_nomsu = function(self, inline) as_nomsu = function(self, inline, can_use_colon)
if inline == nil then if inline == nil then
inline = false inline = false
end end
if can_use_colon == nil then
can_use_colon = false
end
if inline then if inline then
local nomsu = Nomsu(self.source) local nomsu = Nomsu(self.source)
for i, bit in ipairs(self.value) do for i, bit in ipairs(self.value) do
@ -312,44 +318,47 @@ Tree("Action", {
end end
return nomsu return nomsu
else else
local inline_version = self:as_nomsu(true)
if inline_version and #inline_version <= MAX_LINE then
return inline_version
end
local nomsu = Nomsu(self.source) local nomsu = Nomsu(self.source)
local spacer = nil local next_space = ""
local last_colon = nil
for i, bit in ipairs(self.value) do for i, bit in ipairs(self.value) do
if bit.type == "Word" then if bit.type == "Word" then
if spacer then nomsu:append(next_space, bit.value)
nomsu:append(spacer) next_space = " "
end
nomsu:append(bit.value)
spacer = " "
else else
local arg_nomsu = bit:as_nomsu(true) local arg_nomsu = bit.type ~= "Block" and bit:as_nomsu(true)
if arg_nomsu and #arg_nomsu < MAX_LINE then if arg_nomsu and #arg_nomsu < MAX_LINE then
if spacer then if bit.type == "Action" then
nomsu:append(spacer) if can_use_colon and i > 1 then
nomsu:append(next_space:match("[^ ]*"), ": ", arg_nomsu)
next_space = "\n.."
last_colon = i
else
nomsu:append(next_space, "(", arg_nomsu, ")")
next_space = " "
end
else
nomsu:append(next_space, arg_nomsu)
next_space = " "
end end
if bit.type == "Action" or bit.type == "Block" then
arg_nomsu:parenthesize()
end
spacer = " "
else else
arg_nomsu = bit:as_nomsu() arg_nomsu = bit:as_nomsu(nil, true)
if not (nomsu) then if not (nomsu) then
return nil return nil
end end
if bit.type == "Action" or bit.type == "Block" then if bit.type ~= "List" and bit.type ~= "Dict" and bit.type ~= "Text" then
nomsu:append("\n ") if i == 1 then
else arg_nomsu = Nomsu(bit.source, "(..)\n ", arg_nomsu)
if spacer then else
nomsu:append(spacer) arg_nomsu = Nomsu(bit.source, "\n ", arg_nomsu)
end end
end end
spacer = "\n.." if last_colon == i - 1 and (bit.type == "Action" or bit.type == "Block") then
next_space = ""
end
nomsu:append(next_space, arg_nomsu)
next_space = "\n.."
end end
nomsu:append(arg_nomsu)
end end
end end
return nomsu return nomsu
@ -416,9 +425,6 @@ Tree("Text", {
for _index_0 = 1, #_list_0 do for _index_0 = 1, #_list_0 do
local bit = _list_0[_index_0] local bit = _list_0[_index_0]
if type(bit) == 'string' then if type(bit) == 'string' then
if bit:find("\n") then
return nil
end
nomsu:append((bit:gsub("\\", "\\\\"):gsub("\n", "\\n"))) nomsu:append((bit:gsub("\\", "\\\\"):gsub("\n", "\\n")))
else else
local interp_nomsu = bit:as_nomsu(true) local interp_nomsu = bit:as_nomsu(true)