Overhaul of command-line API. It's a bit cleaner now.
This commit is contained in:
parent
d13a945b5f
commit
df9a82a971
@ -18,12 +18,12 @@ fi
|
|||||||
|
|
||||||
for file in core/*.nom; do
|
for file in core/*.nom; do
|
||||||
printf "Compiling $file ..."
|
printf "Compiling $file ..."
|
||||||
./nomsu.moon -c $file
|
./nomsu.moon $file -o "$(basename $file .nom).lua"
|
||||||
echo "done."
|
echo "done."
|
||||||
done
|
done
|
||||||
for file in lib/*.nom; do
|
for file in lib/*.nom; do
|
||||||
printf "Compiling $file ..."
|
printf "Compiling $file ..."
|
||||||
./nomsu.moon -c $file
|
./nomsu.moon $file -o "$(basename $file .nom).lua"
|
||||||
echo "done."
|
echo "done."
|
||||||
done
|
done
|
||||||
#for file in tests/*.nom; do
|
#for file in tests/*.nom; do
|
||||||
|
152
nomsu.lua
152
nomsu.lua
@ -46,6 +46,22 @@ FILE_CACHE = setmetatable({ }, {
|
|||||||
return contents
|
return contents
|
||||||
end
|
end
|
||||||
})
|
})
|
||||||
|
local iterate_single
|
||||||
|
iterate_single = function(item, prev)
|
||||||
|
if item == prev then
|
||||||
|
return nil
|
||||||
|
else
|
||||||
|
return item
|
||||||
|
end
|
||||||
|
end
|
||||||
|
local all_files
|
||||||
|
all_files = function(path)
|
||||||
|
if path:match("%.nom$") or path:match("%.lua$") then
|
||||||
|
return iterate_single, path
|
||||||
|
end
|
||||||
|
path = path:gsub("\\", "\\\\"):gsub("`", ""):gsub('"', '\\"'):gsub("$", "")
|
||||||
|
return io.popen("find \"" .. path .. "\" -type f -name \"*.nom\""):lines()
|
||||||
|
end
|
||||||
local line_counter = re.compile([[ lines <- {| line (%nl line)* |}
|
local line_counter = re.compile([[ lines <- {| line (%nl line)* |}
|
||||||
line <- {} (!%nl .)*
|
line <- {} (!%nl .)*
|
||||||
]], {
|
]], {
|
||||||
@ -361,12 +377,12 @@ do
|
|||||||
end
|
end
|
||||||
return self:run_lua(lua)
|
return self:run_lua(lua)
|
||||||
end,
|
end,
|
||||||
run_file = function(self, path, compile_fn)
|
run_file = function(self, filename, compile_fn)
|
||||||
if compile_fn == nil then
|
if compile_fn == nil then
|
||||||
compile_fn = nil
|
compile_fn = nil
|
||||||
end
|
end
|
||||||
local ret = nil
|
local ret = nil
|
||||||
for filename in io.popen("find " .. path .. " -type f"):lines() do
|
for filename in all_files(filename) do
|
||||||
local _continue_0 = false
|
local _continue_0 = false
|
||||||
repeat
|
repeat
|
||||||
if filename:match("%.lua$") then
|
if filename:match("%.lua$") then
|
||||||
@ -387,8 +403,6 @@ do
|
|||||||
error("File does not exist: " .. tostring(filename), 0)
|
error("File does not exist: " .. tostring(filename), 0)
|
||||||
end
|
end
|
||||||
ret = self:run(Nomsu(Source(filename), file), compile_fn)
|
ret = self:run(Nomsu(Source(filename), file), compile_fn)
|
||||||
_continue_0 = true
|
|
||||||
break
|
|
||||||
else
|
else
|
||||||
error("Invalid filetype for " .. tostring(filename), 0)
|
error("Invalid filetype for " .. tostring(filename), 0)
|
||||||
end
|
end
|
||||||
@ -403,24 +417,32 @@ do
|
|||||||
use_file = function(self, filename)
|
use_file = function(self, filename)
|
||||||
local loaded = self.environment.LOADED
|
local loaded = self.environment.LOADED
|
||||||
if not loaded[filename] then
|
if not loaded[filename] then
|
||||||
for i, f in ipairs(self.use_stack) do
|
local ret = nil
|
||||||
if f == filename then
|
for filename in all_files(filename) do
|
||||||
local loop
|
if not loaded[filename] then
|
||||||
do
|
for i, f in ipairs(self.use_stack) do
|
||||||
local _accum_0 = { }
|
if f == filename then
|
||||||
local _len_0 = 1
|
local loop
|
||||||
for j = i, #self.use_stack do
|
do
|
||||||
_accum_0[_len_0] = self.use_stack[j]
|
local _accum_0 = { }
|
||||||
_len_0 = _len_0 + 1
|
local _len_0 = 1
|
||||||
|
for j = i, #self.use_stack do
|
||||||
|
_accum_0[_len_0] = self.use_stack[j]
|
||||||
|
_len_0 = _len_0 + 1
|
||||||
|
end
|
||||||
|
loop = _accum_0
|
||||||
|
end
|
||||||
|
insert(loop, filename)
|
||||||
|
error("Circular import, this loops forever: " .. tostring(concat(loop, " -> ")))
|
||||||
end
|
end
|
||||||
loop = _accum_0
|
|
||||||
end
|
end
|
||||||
insert(loop, filename)
|
insert(self.use_stack, filename)
|
||||||
error("Circular import, this loops forever: " .. tostring(concat(loop, " -> ")))
|
loaded[filename] = self:run_file(filename) or true
|
||||||
|
ret = loaded[filename]
|
||||||
|
remove(self.use_stack)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
insert(self.use_stack, filename)
|
loaded[filename] = ret
|
||||||
loaded[filename] = self:run_file(filename) or true
|
|
||||||
end
|
end
|
||||||
return loaded[filename]
|
return loaded[filename]
|
||||||
end,
|
end,
|
||||||
@ -789,10 +811,10 @@ do
|
|||||||
self:define_action("run file %filename", get_line_no(), function(_filename)
|
self:define_action("run file %filename", get_line_no(), function(_filename)
|
||||||
return nomsu:run_file(_filename)
|
return nomsu:run_file(_filename)
|
||||||
end)
|
end)
|
||||||
return self:define_compile_action("use %filename", get_line_no(), function(self, _filename)
|
return self:define_compile_action("use %path", get_line_no(), function(self, _path)
|
||||||
local filename = nomsu:tree_to_value(_filename)
|
local path = nomsu:tree_to_value(_path)
|
||||||
nomsu:use_file(filename)
|
nomsu:use_file(path)
|
||||||
return Lua.Value(self.source, "nomsu:use_file(" .. tostring(repr(filename)) .. ")")
|
return Lua(self.source, "nomsu:use_file(" .. tostring(repr(path)) .. ");")
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
}
|
}
|
||||||
@ -927,18 +949,34 @@ do
|
|||||||
end
|
end
|
||||||
if arg and debug_getinfo(2).func ~= require then
|
if arg and debug_getinfo(2).func ~= require then
|
||||||
colors = require('consolecolors')
|
colors = require('consolecolors')
|
||||||
local parser = re.compile([[ args <- {| {:flags: flags? :} ({:input: input :} ";" ("-o;"{:output: output :} ";")?)? (";")? |} !.
|
local parser = re.compile([[ args <- {| {:flags: flags? :} (input ";" (output / print_file)*)? (";")? |} !.
|
||||||
flags <- (({| ({flag} ";")* |}) -> set)
|
flags <- (({| ({flag} ";")* |}) -> set)
|
||||||
flag <- "-c" / "-i" / "-p" / "-O" / "--help" / "-h" / "-v"
|
flag <- "-i" / "-O" / "-f" / "--help" / "-h" / "-s" / "-p"
|
||||||
input <- "-" / [^;]+
|
input <- {:input: file :}
|
||||||
output <- "-" / [^;]+
|
output <- "-o;" {:output: file :}
|
||||||
|
print_file <- "-p;" {:print_file: file :}
|
||||||
|
file <- "-" / [^;]+
|
||||||
]], {
|
]], {
|
||||||
set = set
|
set = set
|
||||||
})
|
})
|
||||||
local args = concat(arg, ";") .. ";"
|
local args = concat(arg, ";") .. ";"
|
||||||
args = parser:match(args) or { }
|
args = parser:match(args) or { }
|
||||||
if not args or not args.flags or args.flags["--help"] or args.flags["-h"] then
|
if not args or not args.flags or args.flags["--help"] or args.flags["-h"] then
|
||||||
print("Usage: lua nomsu.lua [-c] [-i] [-p] [-O] [--help] [input [-o output]]")
|
print([=[Nomsu Compiler
|
||||||
|
|
||||||
|
Usage: (lua nomsu.lua | moon nomsu.moon) [-i] [-O] [-f] [-s] [--help] [input [-o output] [-p print_file]]
|
||||||
|
|
||||||
|
OPTIONS
|
||||||
|
-i Run the compiler in interactive mode (REPL)
|
||||||
|
-O Run the compiler in optimized mode (use precompiled .lua versions of Nomsu files, when available)
|
||||||
|
-f Auto-format the given Nomsu file and print the result.
|
||||||
|
-s Check the program for syntax errors.
|
||||||
|
-v Verbose
|
||||||
|
-h/--help Print this message.
|
||||||
|
<input> Input file can be "-" to use stdin.
|
||||||
|
-o <file> Output the compiled Lua file to the given file (use "-" to output to stdout; if outputting to stdout and -p is not specified, -p will default to /dev/null)
|
||||||
|
-p <file> Print to the specified file instead of stdout.
|
||||||
|
]=])
|
||||||
os.exit()
|
os.exit()
|
||||||
end
|
end
|
||||||
local nomsu = NomsuCompiler()
|
local nomsu = NomsuCompiler()
|
||||||
@ -999,36 +1037,54 @@ if arg and debug_getinfo(2).func ~= require then
|
|||||||
if args.flags["-v"] then
|
if args.flags["-v"] then
|
||||||
nomsu.debug = true
|
nomsu.debug = true
|
||||||
end
|
end
|
||||||
|
if args.input == "-" then
|
||||||
|
args.input = "/dev/fd/0"
|
||||||
|
end
|
||||||
|
if args.output == nil then
|
||||||
|
args.output = "/dev/null"
|
||||||
|
elseif args.output == "-" then
|
||||||
|
args.output = "/dev/fd/1"
|
||||||
|
end
|
||||||
nomsu.skip_precompiled = not args.flags["-O"]
|
nomsu.skip_precompiled = not args.flags["-O"]
|
||||||
if args.input then
|
if args.input then
|
||||||
if args.flags["-c"] and not args.output then
|
|
||||||
args.output = args.input:gsub("%.nom", ".lua")
|
|
||||||
end
|
|
||||||
local compile_fn = nil
|
local compile_fn = nil
|
||||||
if args.flags["-p"] then
|
if args.output == "/dev/fd/1" and not args.print_file then
|
||||||
nomsu.environment.print = function() end
|
args.print_file = "/dev/null"
|
||||||
compile_fn = function(code)
|
elseif not args.print_file or args.print_file == "-" then
|
||||||
return io.output():write("local IMMEDIATE = true;\n" .. tostring(code))
|
args.print_file = "/dev/fd/1"
|
||||||
end
|
|
||||||
elseif args.output then
|
|
||||||
compile_fn = function(code)
|
|
||||||
return io.open(args.output, 'w'):write("local IMMEDIATE = true;\n" .. tostring(code))
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
if args.input:match(".*%.lua") then
|
local print_file = io.open(args.print_file, "w")
|
||||||
|
nomsu.environment.print = function(...)
|
||||||
|
local N = select("#", ...)
|
||||||
|
if N > 0 then
|
||||||
|
print_file:write(tostring(select(1, ...)))
|
||||||
|
for i = 2, N do
|
||||||
|
print_file:write('\t', tostring(select(1, ...)))
|
||||||
|
end
|
||||||
|
end
|
||||||
|
print_file:write('\n')
|
||||||
|
return print_file:flush()
|
||||||
|
end
|
||||||
|
local output_file = io.open(args.output, 'w')
|
||||||
|
compile_fn = function(code)
|
||||||
|
return output_file:write("local IMMEDIATE = true;\n" .. tostring(code))
|
||||||
|
end
|
||||||
|
if args.input:match("%.lua$") then
|
||||||
dofile(args.input)(nomsu, { })
|
dofile(args.input)(nomsu, { })
|
||||||
else
|
else
|
||||||
if args.input == "-" then
|
for input_file in all_files(args.input) do
|
||||||
nomsu:run(io.read('a'), compile_fn)
|
if args.flags["-s"] then
|
||||||
else
|
nomsu:parse(io.open(input_file):read("*a"))
|
||||||
nomsu:run_file(args.input, compile_fn)
|
elseif args.flags["-f"] then
|
||||||
|
local tree = nomsu:parse(io.open(input_file):read("*a"))
|
||||||
|
output_file:write(tostring(tree:as_nomsu()))
|
||||||
|
else
|
||||||
|
nomsu:run_file(input_file, compile_fn)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
if args.flags["-p"] then
|
|
||||||
nomsu.environment.print = print
|
|
||||||
end
|
|
||||||
end
|
end
|
||||||
if args.flags["-i"] then
|
if not args.input or args.flags["-i"] then
|
||||||
nomsu:run('use "core"')
|
nomsu:run('use "core"')
|
||||||
while true do
|
while true do
|
||||||
io.write(colored.bright(colored.yellow(">> ")))
|
io.write(colored.bright(colored.yellow(">> ")))
|
||||||
|
120
nomsu.moon
120
nomsu.moon
@ -49,6 +49,15 @@ FILE_CACHE = setmetatable {}, {
|
|||||||
return contents
|
return contents
|
||||||
}
|
}
|
||||||
|
|
||||||
|
iterate_single = (item, prev) -> if item == prev then nil else item
|
||||||
|
all_files = (path)->
|
||||||
|
-- Sanitize path
|
||||||
|
if path\match("%.nom$") or path\match("%.lua$")
|
||||||
|
return iterate_single, path
|
||||||
|
-- TODO: improve sanitization
|
||||||
|
path = path\gsub("\\","\\\\")\gsub("`","")\gsub('"','\\"')\gsub("$","")
|
||||||
|
return io.popen("find \""..path.."\" -type f -name \"*.nom\"")\lines!
|
||||||
|
|
||||||
line_counter = re.compile([[
|
line_counter = re.compile([[
|
||||||
lines <- {| line (%nl line)* |}
|
lines <- {| line (%nl line)* |}
|
||||||
line <- {} (!%nl .)*
|
line <- {} (!%nl .)*
|
||||||
@ -321,9 +330,9 @@ class NomsuCompiler
|
|||||||
compile_fn(lua)
|
compile_fn(lua)
|
||||||
return @run_lua(lua)
|
return @run_lua(lua)
|
||||||
|
|
||||||
run_file: (path, compile_fn=nil)=>
|
run_file: (filename, compile_fn=nil)=>
|
||||||
ret = nil
|
ret = nil
|
||||||
for filename in io.popen("find "..path.." -type f")\lines!
|
for filename in all_files(filename)
|
||||||
if filename\match("%.lua$")
|
if filename\match("%.lua$")
|
||||||
file = assert(FILE_CACHE[filename], "Could not find file: #{filename}")
|
file = assert(FILE_CACHE[filename], "Could not find file: #{filename}")
|
||||||
ret = @run_lua(Lua(Source(filename), file))
|
ret = @run_lua(Lua(Source(filename), file))
|
||||||
@ -338,7 +347,6 @@ class NomsuCompiler
|
|||||||
if not file
|
if not file
|
||||||
error("File does not exist: #{filename}", 0)
|
error("File does not exist: #{filename}", 0)
|
||||||
ret = @run(Nomsu(Source(filename), file), compile_fn)
|
ret = @run(Nomsu(Source(filename), file), compile_fn)
|
||||||
continue
|
|
||||||
else
|
else
|
||||||
error("Invalid filetype for #{filename}", 0)
|
error("Invalid filetype for #{filename}", 0)
|
||||||
return ret
|
return ret
|
||||||
@ -346,13 +354,19 @@ class NomsuCompiler
|
|||||||
use_file: (filename)=>
|
use_file: (filename)=>
|
||||||
loaded = @environment.LOADED
|
loaded = @environment.LOADED
|
||||||
if not loaded[filename]
|
if not loaded[filename]
|
||||||
for i,f in ipairs @use_stack
|
ret = nil
|
||||||
if f == filename
|
for filename in all_files(filename)
|
||||||
loop = [@use_stack[j] for j=i,#@use_stack]
|
if not loaded[filename]
|
||||||
insert loop, filename
|
for i,f in ipairs @use_stack
|
||||||
error("Circular import, this loops forever: #{concat loop, " -> "}")
|
if f == filename
|
||||||
insert @use_stack, filename
|
loop = [@use_stack[j] for j=i,#@use_stack]
|
||||||
loaded[filename] = @run_file(filename) or true
|
insert loop, filename
|
||||||
|
error("Circular import, this loops forever: #{concat loop, " -> "}")
|
||||||
|
insert @use_stack, filename
|
||||||
|
loaded[filename] = @run_file(filename) or true
|
||||||
|
ret = loaded[filename]
|
||||||
|
remove @use_stack
|
||||||
|
loaded[filename] = ret
|
||||||
return loaded[filename]
|
return loaded[filename]
|
||||||
|
|
||||||
run_lua: (lua)=>
|
run_lua: (lua)=>
|
||||||
@ -638,26 +652,43 @@ class NomsuCompiler
|
|||||||
@define_action "run file %filename", get_line_no!, (_filename)->
|
@define_action "run file %filename", get_line_no!, (_filename)->
|
||||||
return nomsu\run_file(_filename)
|
return nomsu\run_file(_filename)
|
||||||
|
|
||||||
@define_compile_action "use %filename", get_line_no!, (_filename)=>
|
@define_compile_action "use %path", get_line_no!, (_path)=>
|
||||||
filename = nomsu\tree_to_value(_filename)
|
path = nomsu\tree_to_value(_path)
|
||||||
nomsu\use_file(filename)
|
nomsu\use_file(path)
|
||||||
return Lua.Value(@source, "nomsu:use_file(#{repr filename})")
|
return Lua(@source, "nomsu:use_file(#{repr path});")
|
||||||
|
|
||||||
-- Only run this code if this file was run directly with command line arguments, and not require()'d:
|
-- Only run this code if this file was run directly with command line arguments, and not require()'d:
|
||||||
if arg and debug_getinfo(2).func != require
|
if arg and debug_getinfo(2).func != require
|
||||||
export colors
|
export colors
|
||||||
colors = require 'consolecolors'
|
colors = require 'consolecolors'
|
||||||
parser = re.compile([[
|
parser = re.compile([[
|
||||||
args <- {| {:flags: flags? :} ({:input: input :} ";" ("-o;"{:output: output :} ";")?)? (";")? |} !.
|
args <- {| {:flags: flags? :} (input ";" (output / print_file)*)? (";")? |} !.
|
||||||
flags <- (({| ({flag} ";")* |}) -> set)
|
flags <- (({| ({flag} ";")* |}) -> set)
|
||||||
flag <- "-c" / "-i" / "-p" / "-O" / "--help" / "-h" / "-v"
|
flag <- "-i" / "-O" / "-f" / "--help" / "-h" / "-s" / "-p"
|
||||||
input <- "-" / [^;]+
|
input <- {:input: file :}
|
||||||
output <- "-" / [^;]+
|
output <- "-o;" {:output: file :}
|
||||||
|
print_file <- "-p;" {:print_file: file :}
|
||||||
|
file <- "-" / [^;]+
|
||||||
]], {:set})
|
]], {:set})
|
||||||
args = concat(arg, ";")..";"
|
args = concat(arg, ";")..";"
|
||||||
args = parser\match(args) or {}
|
args = parser\match(args) or {}
|
||||||
if not args or not args.flags or args.flags["--help"] or args.flags["-h"]
|
if not args or not args.flags or args.flags["--help"] or args.flags["-h"]
|
||||||
print "Usage: lua nomsu.lua [-c] [-i] [-p] [-O] [--help] [input [-o output]]"
|
print [=[
|
||||||
|
Nomsu Compiler
|
||||||
|
|
||||||
|
Usage: (lua nomsu.lua | moon nomsu.moon) [-i] [-O] [-f] [-s] [--help] [input [-o output] [-p print_file]]
|
||||||
|
|
||||||
|
OPTIONS
|
||||||
|
-i Run the compiler in interactive mode (REPL)
|
||||||
|
-O Run the compiler in optimized mode (use precompiled .lua versions of Nomsu files, when available)
|
||||||
|
-f Auto-format the given Nomsu file and print the result.
|
||||||
|
-s Check the program for syntax errors.
|
||||||
|
-v Verbose
|
||||||
|
-h/--help Print this message.
|
||||||
|
<input> Input file can be "-" to use stdin.
|
||||||
|
-o <file> Output the compiled Lua file to the given file (use "-" to output to stdout; if outputting to stdout and -p is not specified, -p will default to /dev/null)
|
||||||
|
-p <file> Print to the specified file instead of stdout.
|
||||||
|
]=]
|
||||||
os.exit!
|
os.exit!
|
||||||
|
|
||||||
nomsu = NomsuCompiler!
|
nomsu = NomsuCompiler!
|
||||||
@ -700,32 +731,47 @@ if arg and debug_getinfo(2).func != require
|
|||||||
run = ->
|
run = ->
|
||||||
if args.flags["-v"]
|
if args.flags["-v"]
|
||||||
nomsu.debug = true
|
nomsu.debug = true
|
||||||
|
|
||||||
|
if args.input == "-" then args.input = "/dev/fd/0" -- stdin
|
||||||
|
if args.output == nil then args.output = "/dev/null"
|
||||||
|
elseif args.output == "-" then args.output = "/dev/fd/1" -- stdout
|
||||||
|
|
||||||
nomsu.skip_precompiled = not args.flags["-O"]
|
nomsu.skip_precompiled = not args.flags["-O"]
|
||||||
if args.input
|
if args.input
|
||||||
-- Read a file or stdin and output either the printouts or the compiled lua
|
|
||||||
if args.flags["-c"] and not args.output
|
|
||||||
args.output = args.input\gsub("%.nom", ".lua")
|
|
||||||
compile_fn = nil
|
compile_fn = nil
|
||||||
if args.flags["-p"]
|
if args.output == "/dev/fd/1" and not args.print_file
|
||||||
nomsu.environment.print = ->
|
args.print_file = "/dev/null"
|
||||||
compile_fn = (code)->
|
elseif not args.print_file or args.print_file == "-"
|
||||||
io.output!\write("local IMMEDIATE = true;\n"..tostring(code))
|
args.print_file = "/dev/fd/1" -- stdout
|
||||||
elseif args.output
|
|
||||||
compile_fn = (code)->
|
|
||||||
io.open(args.output, 'w')\write("local IMMEDIATE = true;\n"..tostring(code))
|
|
||||||
|
|
||||||
if args.input\match(".*%.lua")
|
print_file = io.open(args.print_file, "w")
|
||||||
|
nomsu.environment.print = (...)->
|
||||||
|
N = select("#",...)
|
||||||
|
if N > 0
|
||||||
|
print_file\write(tostring(select(1,...)))
|
||||||
|
for i=2,N
|
||||||
|
print_file\write('\t',tostring(select(1,...)))
|
||||||
|
print_file\write('\n')
|
||||||
|
print_file\flush!
|
||||||
|
|
||||||
|
output_file = io.open(args.output, 'w')
|
||||||
|
compile_fn = (code)->
|
||||||
|
output_file\write("local IMMEDIATE = true;\n"..tostring(code))
|
||||||
|
|
||||||
|
if args.input\match("%.lua$")
|
||||||
dofile(args.input)(nomsu, {})
|
dofile(args.input)(nomsu, {})
|
||||||
else
|
else
|
||||||
if args.input == "-"
|
for input_file in all_files(args.input)
|
||||||
nomsu\run(io.read('a'), compile_fn)
|
-- Check syntax:
|
||||||
else nomsu\run_file(args.input, compile_fn)
|
if args.flags["-s"]
|
||||||
|
nomsu\parse(io.open(input_file)\read("*a"))
|
||||||
|
elseif args.flags["-f"]
|
||||||
|
tree = nomsu\parse(io.open(input_file)\read("*a"))
|
||||||
|
output_file\write(tostring(tree\as_nomsu!))
|
||||||
|
else
|
||||||
|
nomsu\run_file(input_file, compile_fn)
|
||||||
|
|
||||||
if args.flags["-p"]
|
if not args.input or args.flags["-i"]
|
||||||
nomsu.environment.print = print
|
|
||||||
|
|
||||||
if args.flags["-i"]
|
|
||||||
-- REPL
|
-- REPL
|
||||||
nomsu\run('use "core"')
|
nomsu\run('use "core"')
|
||||||
while true
|
while true
|
||||||
|
@ -359,6 +359,9 @@ Tree("Action", {
|
|||||||
nomsu:append(next_space, arg_nomsu)
|
nomsu:append(next_space, arg_nomsu)
|
||||||
next_space = "\n.."
|
next_space = "\n.."
|
||||||
end
|
end
|
||||||
|
if next_space == " " and #(tostring(nomsu):match("[^\n]*$")) > MAX_LINE then
|
||||||
|
next_space = "\n.."
|
||||||
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
return nomsu
|
return nomsu
|
||||||
|
@ -219,6 +219,9 @@ Tree "Action",
|
|||||||
next_space = ""
|
next_space = ""
|
||||||
nomsu\append next_space, arg_nomsu
|
nomsu\append next_space, arg_nomsu
|
||||||
next_space = "\n.."
|
next_space = "\n.."
|
||||||
|
|
||||||
|
if next_space == " " and #(tostring(nomsu)\match("[^\n]*$")) > MAX_LINE
|
||||||
|
next_space = "\n.."
|
||||||
return nomsu
|
return nomsu
|
||||||
|
|
||||||
|
|
||||||
|
2
tests/inner/inner.nom
Normal file
2
tests/inner/inner.nom
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
use "core"
|
||||||
|
say "Inner directory 'use' test passed."
|
Loading…
Reference in New Issue
Block a user