[Lldb-commits] [PATCH] D76529: [lldb-vscode] Add missing launchCommands entry in the package.json
walter erquinigo via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Mon Mar 23 15:16:30 PDT 2020
wallace updated this revision to Diff 252150.
wallace added a comment.
Use clayborg's wording. Thanks, milord.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D76529/new/
https://reviews.llvm.org/D76529
Files:
lldb/tools/lldb-vscode/package.json
Index: lldb/tools/lldb-vscode/package.json
===================================================================
--- lldb/tools/lldb-vscode/package.json
+++ lldb/tools/lldb-vscode/package.json
@@ -140,6 +140,11 @@
"description": "Commands executed just before the program is launched.",
"default": []
},
+ "launchCommands": {
+ "type": "array",
+ "description": "Custom commands that are executed instead of launching a process. A target will be created with the launch arguments prior to executing these commands. The commands may optionally create a new target and must perform a launch. A valid process must exist after these commands complete or the \"launch\" will fail.",
+ "default": []
+ },
"stopCommands": {
"type": "array",
"description": "Commands executed each time the program stops.",
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D76529.252150.patch
Type: text/x-patch
Size: 889 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20200323/09f084b7/attachment.bin>
More information about the lldb-commits
mailing list