When can lldb autofill an expression?

It seems that sometimes lldb can autocomplete the expression, but sometimes this function is interrupted.

+1
source share
1 answer

The lldb command line has autocomplete for a group of commands and parameters, but not for expressions that you enter in the print command (i.e. expr ). If you use Xcode, it will offer autocompletion using source code analysis tools. If you find cases where this does not work, write a bug from http://bugreporter.apple.com and Xcode people can take a look.

+1
source

Source: https://habr.com/ru/post/951733/


All Articles