Minor fixes/tidying.
This commit is contained in:
parent
13923c9d26
commit
603c5b1245
@ -226,7 +226,6 @@ Files.get_line_starts = function(str)
|
|||||||
_LINE_STARTS[str] = line_starts
|
_LINE_STARTS[str] = line_starts
|
||||||
return line_starts
|
return line_starts
|
||||||
end
|
end
|
||||||
local log = { }
|
|
||||||
Files.get_line_number = function(str, pos)
|
Files.get_line_number = function(str, pos)
|
||||||
local line_starts = Files.get_line_starts(str)
|
local line_starts = Files.get_line_starts(str)
|
||||||
local lo, hi = 1, #line_starts
|
local lo, hi = 1, #line_starts
|
||||||
|
@ -131,7 +131,6 @@ Files.get_line_starts = (str)->
|
|||||||
_LINE_STARTS[str] = line_starts
|
_LINE_STARTS[str] = line_starts
|
||||||
return line_starts
|
return line_starts
|
||||||
|
|
||||||
log = {}
|
|
||||||
Files.get_line_number = (str, pos)->
|
Files.get_line_number = (str, pos)->
|
||||||
line_starts = Files.get_line_starts(str)
|
line_starts = Files.get_line_starts(str)
|
||||||
-- Binary search for line number of position
|
-- Binary search for line number of position
|
||||||
|
@ -97,7 +97,7 @@ if not arg or debug.getinfo(2).func == require then
|
|||||||
return NomsuCompiler
|
return NomsuCompiler
|
||||||
end
|
end
|
||||||
local file_queue = { }
|
local file_queue = { }
|
||||||
local sep = "\0"
|
local sep = "\3"
|
||||||
local parser = re.compile([[ args <- {| (flag %sep)* (({~ file ~} -> add_file) {:primary_file: '' -> true :} %sep)?
|
local parser = re.compile([[ args <- {| (flag %sep)* (({~ file ~} -> add_file) {:primary_file: '' -> true :} %sep)?
|
||||||
{:nomsu_args: {| ({(!%sep .)*} %sep)* |} :} %sep? |} !.
|
{:nomsu_args: {| ({(!%sep .)*} %sep)* |} :} %sep? |} !.
|
||||||
flag <-
|
flag <-
|
||||||
|
@ -55,7 +55,7 @@ if not arg or debug.getinfo(2).func == require
|
|||||||
return NomsuCompiler
|
return NomsuCompiler
|
||||||
|
|
||||||
file_queue = {}
|
file_queue = {}
|
||||||
sep = "\0"
|
sep = "\3"
|
||||||
parser = re.compile([[
|
parser = re.compile([[
|
||||||
args <- {| (flag %sep)* (({~ file ~} -> add_file) {:primary_file: '' -> true :} %sep)?
|
args <- {| (flag %sep)* (({~ file ~} -> add_file) {:primary_file: '' -> true :} %sep)?
|
||||||
{:nomsu_args: {| ({(!%sep .)*} %sep)* |} :} %sep? |} !.
|
{:nomsu_args: {| ({(!%sep .)*} %sep)* |} :} %sep? |} !.
|
||||||
|
Loading…
Reference in New Issue
Block a user