Skip to content

Commit 1ada9b9

Browse files
Allow setting breakpoints in objc++ files (#159779)
With the released version of the lldb-dap extension, I have to set breakpoints in objcpp (*.mm) files via the debug console (b Myfile.mm:123) or change the detected file type in VSCode to objc or cpp. VSCode should allow setting breakpoints in objcpp files with vscode-lldb with this change to the package.json
1 parent e4e666a commit 1ada9b9

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

lldb/tools/lldb-dap/package.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -350,6 +350,9 @@
350350
{
351351
"language": "objective-c"
352352
},
353+
{
354+
"language": "objective-cpp"
355+
},
353356
{
354357
"language": "objectpascal"
355358
},
@@ -378,6 +381,7 @@
378381
"fortran-modern",
379382
"nim",
380383
"objective-c",
384+
"objective-cpp",
381385
"objectpascal",
382386
"pascal",
383387
"rust",

0 commit comments

Comments
 (0)