Made the source mapping optional (and disabled with -O2+)

This commit is contained in:
Bruce Hill 2019-01-08 16:35:32 -08:00
parent fc1655e028
commit 1d2bd858fd
4 changed files with 4 additions and 4 deletions

View File

@ -103,7 +103,7 @@ print_error = function(error_message, start_fn, stop_fn)
end
local line = nil
do
local map = SOURCE_MAP[calling_fn.source]
local map = SOURCE_MAP and SOURCE_MAP[calling_fn.source]
if map then
if calling_fn.currentline then
calling_fn.currentline = assert(map[calling_fn.currentline])

View File

@ -66,7 +66,7 @@ print_error = (error_message, start_fn, stop_fn)->
if calling_fn.linedefined == 0 then name = "main chunk"
if name == "run_lua_fn" then continue
line = nil
if map = SOURCE_MAP[calling_fn.source]
if map = SOURCE_MAP and SOURCE_MAP[calling_fn.source]
if calling_fn.currentline
calling_fn.currentline = assert(map[calling_fn.currentline])
if calling_fn.linedefined

View File

@ -255,7 +255,7 @@ local nomsu_environment = Importer({
error("Failed to compile generated code:\n\027[1;34m" .. tostring(line_numbered_lua) .. "\027[0m\n\n" .. tostring(err), 0)
end
local source_key = tostring(source)
if not (environment.SOURCE_MAP[source_key]) then
if not (environment.SOURCE_MAP[source_key] or environment.OPTIMIZATION >= 2) then
local map = { }
local file = Files.read(source.filename)
if not file then

View File

@ -131,7 +131,7 @@ nomsu_environment = Importer{
line_numbered_lua = table.concat(lines, "\n")
error("Failed to compile generated code:\n\027[1;34m#{line_numbered_lua}\027[0m\n\n#{err}", 0)
source_key = tostring(source)
unless environment.SOURCE_MAP[source_key]
unless environment.SOURCE_MAP[source_key] or environment.OPTIMIZATION >= 2
map = {}
file = Files.read(source.filename)
if not file