[Lldb-commits] [PATCH] D154030: [lldb-vscode] Creating a new flag for adjusting the behavior of evaluation repl expressions to allow users to more easily invoke lldb commands.

walter erquinigo via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Mon Jul 10 19:02:59 PDT 2023


wallace added a comment.

Could you split the changes to the selected thread out of this? I'm seeing two features being implemented in this patch.
Other than that, it looks pretty good!



================
Comment at: lldb/tools/lldb-vscode/Options.td:20-38
+def port: S<"port">,
   MetaVarName<"<port>">,
   HelpText<"Communicate with the lldb-vscode tool over the defined port.">;
 def: Separate<["-"], "p">,
   Alias<port>,
   HelpText<"Alias for --port">;
 
----------------
+1


================
Comment at: lldb/tools/lldb-vscode/VSCode.cpp:768
 
+  return true; 
+}
----------------
use clang-format please


================
Comment at: lldb/tools/lldb-vscode/VSCode.h:89
+
+/// A huersitic for determining the context of an evaluation.
+enum class ExpressionContext {
----------------
typo


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D154030/new/

https://reviews.llvm.org/D154030



More information about the lldb-commits mailing list