[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
Fri Mar 20 14:40:14 PDT 2020
wallace created this revision.
wallace added reviewers: clayborg, labath, kusmour, aadsm.
Herald added a project: LLDB.
Herald added a subscriber: lldb-commits.
https://reviews.llvm.org/D65363 introduced the launchCommands argument. However, it did not add
a corresponding definition in the package.json
Repository:
rG LLVM Github Monorepo
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
@@ -145,6 +145,11 @@
"description": "Commands executed just before the program is launched.",
"default": []
},
+ "launchCommands": {
+ "type": "array",
+ "description": "Commands that create a custom target instead of using lldb-vscode's default target creation.",
+ "default": []
+ },
"stopCommands": {
"type": "array",
"description": "Commands executed each time the program stops.",
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D76529.251770.patch
Type: text/x-patch
Size: 669 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20200320/b92c3ccf/attachment.bin>
More information about the lldb-commits
mailing list