parent
5a84af0bff
commit
6ead793c09
2 changed files with 35 additions and 1 deletions
16
package.json
16
package.json
|
|
@ -10,7 +10,9 @@
|
|||
},
|
||||
"main": "./out/src/frontend/extension",
|
||||
"activationEvents": [
|
||||
"onCommand:code-debug.examineMemoryLocation"
|
||||
"onCommand:code-debug.examineMemoryLocation",
|
||||
"onCommand:code-debug.getFileNameNoExt",
|
||||
"onCommand:code-debug.getFileBasenameNoExt"
|
||||
],
|
||||
"categories": [
|
||||
"Debuggers"
|
||||
|
|
@ -50,6 +52,10 @@
|
|||
"asm"
|
||||
]
|
||||
},
|
||||
"variables": {
|
||||
"FileBasenameNoExt": "code-debug.getFileBasenameNoExt",
|
||||
"FileNameNoExt": "code-debug.getFileNameNoExt"
|
||||
},
|
||||
"configurationAttributes": {
|
||||
"launch": {
|
||||
"required": [
|
||||
|
|
@ -216,6 +222,10 @@
|
|||
"program": "./out/src/lldb.js",
|
||||
"runtime": "node",
|
||||
"label": "LLDB",
|
||||
"variables": {
|
||||
"FileBasenameNoExt": "code-debug.getFileBasenameNoExt",
|
||||
"FileNameNoExt": "code-debug.getFileNameNoExt"
|
||||
},
|
||||
"enableBreakpointsFor": {
|
||||
"languageIds": [
|
||||
"c",
|
||||
|
|
@ -399,6 +409,10 @@
|
|||
"program": "./out/src/mago.js",
|
||||
"runtime": "node",
|
||||
"label": "Mago-MI",
|
||||
"variables": {
|
||||
"FileBasenameNoExt": "code-debug.getFileBasenameNoExt",
|
||||
"FileNameNoExt": "code-debug.getFileNameNoExt"
|
||||
},
|
||||
"enableBreakpointsFor": {
|
||||
"languageIds": [
|
||||
"d"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue