Author: Walter Erquinigo Date: 2020-03-20T18:51:25-07:00 New Revision: a8c22ba4162976894b34b75fd12aced379e0569b
URL: https://github.com/llvm/llvm-project/commit/a8c22ba4162976894b34b75fd12aced379e0569b DIFF: https://github.com/llvm/llvm-project/commit/a8c22ba4162976894b34b75fd12aced379e0569b.diff LOG: [lldb-vscode] Add missing launchCommands entry in the package.json Summary: https://reviews.llvm.org/D65363 introduced the launchCommands argument. However, it did not add a corresponding definition in the package.json Reviewers: clayborg, labath, kusmour, aadsm Subscribers: lldb-commits Tags: #lldb Differential Revision: https://reviews.llvm.org/D76529 Added: Modified: lldb/tools/lldb-vscode/package.json Removed: ################################################################################ diff --git a/lldb/tools/lldb-vscode/package.json b/lldb/tools/lldb-vscode/package.json index dc27ab54900b..0799acfa116e 100644 --- a/lldb/tools/lldb-vscode/package.json +++ b/lldb/tools/lldb-vscode/package.json @@ -140,6 +140,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.", _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits