[Lldb-commits] [lldb] e0279d7 - [lldb-vscode] Add missing launchCommands entry in the package.json

Walter Erquinigo via lldb-commits lldb-commits at lists.llvm.org
Mon Mar 23 23:21:55 PDT 2020


Author: Walter Erquinigo
Date: 2020-03-23T23:21:30-07:00
New Revision: e0279d720a6eebd8508d4f102c684aee9fe9d100

URL: https://github.com/llvm/llvm-project/commit/e0279d720a6eebd8508d4f102c684aee9fe9d100
DIFF: https://github.com/llvm/llvm-project/commit/e0279d720a6eebd8508d4f102c684aee9fe9d100.diff

LOG: [lldb-vscode] Add missing launchCommands entry in the package.json

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..2058edf68550 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": "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.",


        


More information about the lldb-commits mailing list