You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(builtin) Trace(scope, callback) form added to dbg
The system_load("builtin/debug.lua") got another form of invocation
that should be more useful in an arcan context. Used like this:
local list = {};
Trace(function_call_to_trace, function(msg)
table.insert(list, msg)
end)
Would store the trace output into list and only for the passed function.
0 commit comments