[Lldb-commits] [PATCH] D47232: Break dependency from Expression -> Commands

Jim Ingham via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Tue May 22 17:03:45 PDT 2018


jingham requested changes to this revision.
jingham added a comment.
This revision now requires changes to proceed.

The REPL is just a mode of the expression command.  You invoke it by saying:

(lldb) expr --repl --

or you can add any other options to it that you want, including flags like -i or -u.

So it seems odd to handle the passing of one subset of those options from the expression command to this expression mode differently from all the other options you pass to it (e.g. the variable object - i.e. result printing - options.)


https://reviews.llvm.org/D47232





More information about the lldb-commits mailing list