More callstack fixin
This commit is contained in:
parent
b909dce5d1
commit
c6819cf1e9
@ -808,8 +808,10 @@ end)]]):format(concat(lua_bits, "\n"))
|
|||||||
local _list_0 = self.callstack
|
local _list_0 = self.callstack
|
||||||
for _index_0 = 1, #_list_0 do
|
for _index_0 = 1, #_list_0 do
|
||||||
local c = _list_0[_index_0]
|
local c = _list_0[_index_0]
|
||||||
_accum_0[_len_0] = #c[2]
|
if c ~= "#macro" then
|
||||||
_len_0 = _len_0 + 1
|
_accum_0[_len_0] = #c[2]
|
||||||
|
_len_0 = _len_0 + 1
|
||||||
|
end
|
||||||
end
|
end
|
||||||
return _accum_0
|
return _accum_0
|
||||||
end)())
|
end)())
|
||||||
|
@ -584,7 +584,7 @@ end)]])\format(concat(lua_bits, "\n"))
|
|||||||
if msg
|
if msg
|
||||||
@errorln(colored.bright colored.yellow colored.onred msg)
|
@errorln(colored.bright colored.yellow colored.onred msg)
|
||||||
@errorln("Callstack:")
|
@errorln("Callstack:")
|
||||||
maxlen = utils.max([#c[2] for c in *@callstack])
|
maxlen = utils.max([#c[2] for c in *@callstack when c != "#macro"])
|
||||||
for i=#@callstack,1,-1
|
for i=#@callstack,1,-1
|
||||||
if @callstack[i] != "#macro"
|
if @callstack[i] != "#macro"
|
||||||
@errorln " #{"%-#{maxlen}s"\format @callstack[i][2]}| #{@callstack[i][1]}"
|
@errorln " #{"%-#{maxlen}s"\format @callstack[i][2]}| #{@callstack[i][1]}"
|
||||||
|
Loading…
Reference in New Issue
Block a user