[lldb-vscode] Add missing launchCommands entry in the package.json
authorWalter Erquinigo <waltermelon@fb.com>
Sat, 21 Mar 2020 02:33:14 +0000 (19:33 -0700)
committerWalter Erquinigo <waltermelon@fb.com>
Tue, 24 Mar 2020 06:21:30 +0000 (23:21 -0700)
lldb/tools/lldb-vscode/package.json

index dc27ab5..2058edf 100644 (file)
                                                                        "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.",