Added fallback for if there is a source without an endpoint.

This commit is contained in:
Bruce Hill 2018-12-18 17:35:27 -08:00
parent ec1a1935d6
commit af507f7f7a
2 changed files with 5 additions and 0 deletions

View File

@ -115,6 +115,9 @@ print_error = function(error_message, start_fn, stop_fn)
calling_fn.lastlinedefined = assert(map[calling_fn.lastlinedefined])
end
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)
local file = files.read(filename)
if calling_fn.name then

View File

@ -75,6 +75,8 @@ print_error = (error_message, start_fn, stop_fn)->
calling_fn.lastlinedefined = assert(map[calling_fn.lastlinedefined])
--calling_fn.short_src = calling_fn.source\match('"([^[]*)')
filename,start,stop = calling_fn.source\match('@([^[]*)%[([0-9]+):([0-9]+)]')
if not filename
filename,start = calling_fn.source\match('@([^[]*)%[([0-9]+)]')
assert(filename)
file = files.read(filename)
-- TODO: get name properly