Skip to content

Commit d62869d

Browse files
committed
package.json: address comments from cl/280697
--backend and --output are also mapped to some properties. Change-Id: If502c23f6b747c14782bce2c44f4ca4df478a186 Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/283936 Trust: Hyang-Ah Hana Kim <[email protected]> Trust: Suzy Mueller <[email protected]> Run-TryBot: Hyang-Ah Hana Kim <[email protected]> TryBot-Result: kokoro <[email protected]> Reviewed-by: Suzy Mueller <[email protected]>
1 parent 1ac4671 commit d62869d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@
517517
},
518518
"args": {
519519
"type": "array",
520-
"description": "Command line arguments passed to the program.",
520+
"description": "Command line arguments passed to the debugged program.",
521521
"items": {
522522
"type": "string"
523523
},
@@ -570,7 +570,7 @@
570570
},
571571
"dlvFlags": {
572572
"type": "array",
573-
"description": "Extra flags for `dlv`. See `dlv help` for the full list of supported. Flags such as `--log-output`, `--log`, `--init`, `--api-version` already have corresponding properties in the debug configuration, and flags such as `--listen` and `--headless` are used internally. If they are specified in `dlvFlags`, they may be ignored or cause an error.",
573+
"description": "Extra flags for `dlv`. See `dlv help` for the full list of supported. Flags such as `--log-output`, `--log`, `--init`, `--api-version`, `--output`, `--backend` already have corresponding properties in the debug configuration, and flags such as `--listen` and `--headless` are used internally. If they are specified in `dlvFlags`, they may be ignored or cause an error.",
574574
"items": {
575575
"type": "string"
576576
},
@@ -782,7 +782,7 @@
782782
"native",
783783
"lldb"
784784
],
785-
"description": "Backend used by delve. Only available in delve version 0.12.2 and above."
785+
"description": "Backend used by delve. Only available in delve version 0.12.2 and above. Maps to dlv's `--backend` flag."
786786
},
787787
"logOutput": {
788788
"type": "string",
@@ -1051,7 +1051,7 @@
10511051
},
10521052
"output": {
10531053
"type": "string",
1054-
"description": "Output path for the binary of delve",
1054+
"description": "Output path for the binary of delve. Maps to dlv's `--output` flag.",
10551055
"default": "debug"
10561056
},
10571057
"logOutput": {

0 commit comments

Comments
 (0)