Bumped version number, fixed REPL, and simplified/fixed (use %).

This commit is contained in:
Bruce Hill 2018-10-31 03:51:37 -07:00
parent ea3197aaff
commit 83219f8522
6 changed files with 42 additions and 58 deletions

View File

@ -191,20 +191,18 @@ Files.walk = function(path, flush_cache)
end end
end end
end end
local iter files = files or { }
iter = function(files, i) do
if not (files) then local _accum_0 = { }
return local _len_0 = 1
end for _index_0 = 1, #files do
i = i + 1 local f = files[_index_0]
do _accum_0[_len_0] = gsub(f, "^%./", "")
local f = files[i] _len_0 = _len_0 + 1
if f then
return i, f
end
end end
files = _accum_0
end end
return iter, files, 0 return ipairs(files)
end end
local line_counter = re.compile([[ lines <- {| line (%nl line)* |} local line_counter = re.compile([[ lines <- {| line (%nl line)* |}
line <- {} (!%nl .)* line <- {} (!%nl .)*

View File

@ -33,7 +33,6 @@ Files.read = (filename)->
_FILE_CACHE[filename] = contents _FILE_CACHE[filename] = contents
return contents return contents
-- `walk` returns an iterator over all files matching a path.
{:match, :gsub} = string {:match, :gsub} = string
-- TODO: improve sanitization -- TODO: improve sanitization
@ -108,12 +107,9 @@ Files.walk = (path, flush_cache=false)->
else else
for nomsupath in package.nomsupath\gmatch("[^;]+") for nomsupath in package.nomsupath\gmatch("[^;]+")
if files = browse(nomsupath.."/"..path) then break if files = browse(nomsupath.."/"..path) then break
iter = (files, i)-> files or= {}
return unless files files = [gsub(f, "^%./", "") for f in *files]
i += 1 return ipairs(files)
if f = files[i]
return i, f
return iter, files, 0
line_counter = re.compile([[ line_counter = re.compile([[
lines <- {| line (%nl line)* |} lines <- {| line (%nl line)* |}

View File

@ -133,8 +133,7 @@ end
local nomsu = NomsuCompiler local nomsu = NomsuCompiler
nomsu.environment.arg = NomsuCompiler.environment._List(args.nomsu_args) nomsu.environment.arg = NomsuCompiler.environment._List(args.nomsu_args)
if args.version then if args.version then
nomsu:run([[use "core" nomsu:run([[(: use "core"; say (Nomsu version))]])
say (Nomsu version)]])
os.exit(EXIT_SUCCESS) os.exit(EXIT_SUCCESS)
end end
FILE_CACHE = setmetatable({ }, { FILE_CACHE = setmetatable({ }, {
@ -183,11 +182,7 @@ run = function()
return true return true
end end
if not (args.no_core) then if not (args.no_core) then
for _, filename in Files.walk('core') do nomsu:import_file('core')
if filename:match("%.nom$") then
nomsu:import(nomsu:run_file(filename))
end
end
end end
local get_file_and_source local get_file_and_source
get_file_and_source = function(filename) get_file_and_source = function(filename)
@ -280,8 +275,8 @@ run = function()
if not (args.primary_file or args.exec_strings) then if not (args.primary_file or args.exec_strings) then
nomsu:run([[#!/usr/bin/env nomsu -V4 nomsu:run([[#!/usr/bin/env nomsu -V4
use "lib/consolecolor.nom" use "lib/consolecolor.nom"
action [quit, exit]: lua> "os.exit(0)" [quit, exit] all mean: lua> "os.exit(0)"
action [help]: (help) means:
say "\ say "\
..This is the Nomsu v\(Nomsu version) interactive console. ..This is the Nomsu v\(Nomsu version) interactive console.
You can type in Nomsu code here and hit 'enter' twice to run it. You can type in Nomsu code here and hit 'enter' twice to run it.
@ -320,7 +315,7 @@ say "\
return Errhand.print_error(error_message) return Errhand.print_error(error_message)
end end
local ret local ret
ok, ret = xpcall(nomsu.run, err_hand, nomsu, buff, Source(pseudo_filename, 1, #buff)) ok, ret = xpcall(nomsu.run, err_hand, nomsu, NomsuCode(Source(pseudo_filename, 1, #buff), buff))
if ok and ret ~= nil then if ok and ret ~= nil then
if type(ret) == 'number' then if type(ret) == 'number' then
print("= " .. tostring(ret)) print("= " .. tostring(ret))

View File

@ -89,9 +89,7 @@ nomsu = NomsuCompiler
nomsu.environment.arg = NomsuCompiler.environment._List(args.nomsu_args) nomsu.environment.arg = NomsuCompiler.environment._List(args.nomsu_args)
if args.version if args.version
nomsu\run [[ nomsu\run [[(: use "core"; say (Nomsu version))]]
use "core"
say (Nomsu version)]]
os.exit(EXIT_SUCCESS) os.exit(EXIT_SUCCESS)
export FILE_CACHE export FILE_CACHE
@ -123,9 +121,7 @@ run = ->
return true return true
unless args.no_core unless args.no_core
for _,filename in Files.walk('core') nomsu\import_file('core')
if filename\match "%.nom$"
nomsu\import(nomsu\run_file(filename))
get_file_and_source = (filename)-> get_file_and_source = (filename)->
local file, source local file, source
@ -185,8 +181,8 @@ run = ->
nomsu\run [[ nomsu\run [[
#!/usr/bin/env nomsu -V4 #!/usr/bin/env nomsu -V4
use "lib/consolecolor.nom" use "lib/consolecolor.nom"
action [quit, exit]: lua> "os.exit(0)" [quit, exit] all mean: lua> "os.exit(0)"
action [help]: (help) means:
say "\ say "\
..This is the Nomsu v\(Nomsu version) interactive console. ..This is the Nomsu v\(Nomsu version) interactive console.
You can type in Nomsu code here and hit 'enter' twice to run it. You can type in Nomsu code here and hit 'enter' twice to run it.
@ -215,11 +211,12 @@ say "\
break -- Exit break -- Exit
buff = table.concat(buff) buff = table.concat(buff)
pseudo_filename = "user input #"..repl_line pseudo_filename = "user input #"..repl_line
Files.spoof(pseudo_filename, buff) Files.spoof(pseudo_filename, buff)
err_hand = (error_message)-> err_hand = (error_message)->
Errhand.print_error error_message Errhand.print_error error_message
ok, ret = xpcall(nomsu.run, err_hand, nomsu, buff, Source(pseudo_filename, 1, #buff)) ok, ret = xpcall nomsu.run, err_hand, nomsu, NomsuCode(Source(pseudo_filename,1,#buff), buff)
if ok and ret != nil if ok and ret != nil
if type(ret) == 'number' if type(ret) == 'number'
print "= #{ret}" print "= #{ret}"

View File

@ -157,7 +157,7 @@ do
return false return false
end end
NomsuCompiler.environment = { NomsuCompiler.environment = {
NOMSU_COMPILER_VERSION = 9, NOMSU_COMPILER_VERSION = 10,
NOMSU_SYNTAX_VERSION = max_parser_version, NOMSU_SYNTAX_VERSION = max_parser_version,
next = next, next = next,
unpack = unpack, unpack = unpack,
@ -459,19 +459,10 @@ do
return add_lua_bits(self, "value", code) return add_lua_bits(self, "value", code)
end, end,
["use 1"] = function(self, tree, path) ["use 1"] = function(self, tree, path)
local lua = LuaCode(tree.source)
if path.type == 'Text' and #path == 1 and type(path[1]) == 'string' then if path.type == 'Text' and #path == 1 and type(path[1]) == 'string' then
for _, f in Files.walk(path[1]) do self:import_file(path[1])
if match(f, "%.lua$") or match(f, "%.nom$") or match(f, "^/dev/fd/[012]$") then
self:import(self:run_file(f))
if #lua.bits > 0 then
lua:append("\n")
end
lua:append("nomsu:import(nomsu:run_file(" .. tostring(f:as_lua()) .. "))")
end
end
end end
return lua return LuaCode(tree.source, "nomsu:import_file(" .. tostring(self:compile(path)) .. ")")
end, end,
["tests"] = function(self, tree) ["tests"] = function(self, tree)
return LuaCode.Value(tree.source, "TESTS") return LuaCode.Value(tree.source, "TESTS")
@ -533,6 +524,13 @@ do
end end
end end
end end
NomsuCompiler.import_file = function(self, path)
for _, f in Files.walk(path) do
if match(f, "%.lua$") or match(f, "%.nom$") or match(f, "^/dev/fd/[012]$") then
self:import(self:run_file(f))
end
end
end
NomsuCompiler.run = function(self, to_run, compile_actions) NomsuCompiler.run = function(self, to_run, compile_actions)
local source = to_run.source or Source(to_run, 1, #to_run) local source = to_run.source or Source(to_run, 1, #to_run)
if type(source) == 'string' then if type(source) == 'string' then

View File

@ -97,7 +97,7 @@ with NomsuCompiler
-- Discretionary/convenience stuff -- Discretionary/convenience stuff
.environment = { .environment = {
NOMSU_COMPILER_VERSION: 9, NOMSU_SYNTAX_VERSION: max_parser_version NOMSU_COMPILER_VERSION: 10, NOMSU_SYNTAX_VERSION: max_parser_version
-- Lua stuff: -- Lua stuff:
:next, :unpack, :setmetatable, :coroutine, :rawequal, :getmetatable, :pcall, :next, :unpack, :setmetatable, :coroutine, :rawequal, :getmetatable, :pcall,
:error, :package, :os, :require, :tonumber, :tostring, :string, :xpcall, :module, :error, :package, :os, :require, :tonumber, :tostring, :string, :xpcall, :module,
@ -264,14 +264,9 @@ with NomsuCompiler
return add_lua_bits(@, "value", code) return add_lua_bits(@, "value", code)
["use 1"]: (tree, path)=> ["use 1"]: (tree, path)=>
lua = LuaCode(tree.source)
if path.type == 'Text' and #path == 1 and type(path[1]) == 'string' if path.type == 'Text' and #path == 1 and type(path[1]) == 'string'
for _,f in Files.walk(path[1]) @import_file(path[1])
if match(f, "%.lua$") or match(f, "%.nom$") or match(f, "^/dev/fd/[012]$") return LuaCode(tree.source, "nomsu:import_file(#{@compile(path)})")
@import(@run_file(f))
if #lua.bits > 0 then lua\append "\n"
lua\append "nomsu:import(nomsu:run_file(#{f\as_lua!}))"
return lua
["tests"]: (tree)=> LuaCode.Value(tree.source, "TESTS") ["tests"]: (tree)=> LuaCode.Value(tree.source, "TESTS")
["test 1"]: (tree, body)=> ["test 1"]: (tree, body)=>
@ -299,6 +294,11 @@ with NomsuCompiler
continue if k == "__imported" or k == "__parent" continue if k == "__imported" or k == "__parent"
@environment.COMPILE_ACTIONS.__imported[k] or= v @environment.COMPILE_ACTIONS.__imported[k] or= v
.import_file = (path)=>
for _,f in Files.walk(path)
if match(f, "%.lua$") or match(f, "%.nom$") or match(f, "^/dev/fd/[012]$")
@import(@run_file(f))
.run = (to_run, compile_actions)=> .run = (to_run, compile_actions)=>
source = to_run.source or Source(to_run, 1, #to_run) source = to_run.source or Source(to_run, 1, #to_run)
if type(source) == 'string' then source = Source\from_string(source) if type(source) == 'string' then source = Source\from_string(source)