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


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.",
_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to