This patch allows LLDB to print column info in backtraces et al. if available, which is useful when the backtrace contains a frame like the following:
f(can_crash(0), can_crash(1));
Differential D51661
Print column info in backtraces et al. if available aprantl on Sep 4 2018, 3:49 PM. Authored by
Details This patch allows LLDB to print column info in backtraces et al. if available, which is useful when the backtrace contains a frame like the following: f(can_crash(0), can_crash(1));
Diff Detail
Event TimelineComment Actions We shouldn't have the colon character be part of the ${line.column} formatting itself. See inlined comments.
Comment Actions See my inlined comments about returning true and false correctly for the column and the correction to the format string
Comment Actions Address review feedback. Thanks you, I was wondering how to properly implement an optional element! |