[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
This commit is contained in:
Walter Erquinigo 2020-03-20 14:36:45 -07:00
parent a299178ae7
commit a8c22ba416
1 changed files with 5 additions and 0 deletions

View File

@ -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.",