Added fallback for if there is a source without an endpoint.
This commit is contained in:
parent
ec1a1935d6
commit
af507f7f7a
@ -115,6 +115,9 @@ print_error = function(error_message, start_fn, stop_fn)
|
|||||||
calling_fn.lastlinedefined = assert(map[calling_fn.lastlinedefined])
|
calling_fn.lastlinedefined = assert(map[calling_fn.lastlinedefined])
|
||||||
end
|
end
|
||||||
local filename, start, stop = calling_fn.source:match('@([^[]*)%[([0-9]+):([0-9]+)]')
|
local filename, start, stop = calling_fn.source:match('@([^[]*)%[([0-9]+):([0-9]+)]')
|
||||||
|
if not filename then
|
||||||
|
filename, start = calling_fn.source:match('@([^[]*)%[([0-9]+)]')
|
||||||
|
end
|
||||||
assert(filename)
|
assert(filename)
|
||||||
local file = files.read(filename)
|
local file = files.read(filename)
|
||||||
if calling_fn.name then
|
if calling_fn.name then
|
||||||
|
@ -75,6 +75,8 @@ print_error = (error_message, start_fn, stop_fn)->
|
|||||||
calling_fn.lastlinedefined = assert(map[calling_fn.lastlinedefined])
|
calling_fn.lastlinedefined = assert(map[calling_fn.lastlinedefined])
|
||||||
--calling_fn.short_src = calling_fn.source\match('"([^[]*)')
|
--calling_fn.short_src = calling_fn.source\match('"([^[]*)')
|
||||||
filename,start,stop = calling_fn.source\match('@([^[]*)%[([0-9]+):([0-9]+)]')
|
filename,start,stop = calling_fn.source\match('@([^[]*)%[([0-9]+):([0-9]+)]')
|
||||||
|
if not filename
|
||||||
|
filename,start = calling_fn.source\match('@([^[]*)%[([0-9]+)]')
|
||||||
assert(filename)
|
assert(filename)
|
||||||
file = files.read(filename)
|
file = files.read(filename)
|
||||||
-- TODO: get name properly
|
-- TODO: get name properly
|
||||||
|
Loading…
Reference in New Issue
Block a user