[Lldb-commits] [lldb] [lldb] Expose language plugin commands based based on language of current frame (PR #136766)
Dave Lee via lldb-commits
lldb-commits at lists.llvm.org
Thu May 1 12:38:14 PDT 2025
kastiglione wrote:
I've updated the implementation to not resolve to a language specific command whenever the entered command prefix matches a top level command.
In other words, given a python command `abcdef` and a language specific command `abc`, then running `abc` will resolve to the python command `abcdef`, for compatibility sake.
Given how few language specific commands there are, I don't see this as causing problems:
* `language cplusplus demangle`
* `language objc class-table`
* `language objc tagged-pointer`
* `language swift demangle`
* `language swift refcount`
* `language swift task`
https://github.com/llvm/llvm-project/pull/136766
More information about the lldb-commits
mailing list