[Lldb-commits] [PATCH] D104882: makes extension contribute breakpoints using new package.json schema:https://code.visualstudio.com/updates/v1_42#_implement-a-debug-adapter-inside-an-extension
Chris Bond via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Thu Jun 24 23:19:22 PDT 2021
chrisbond updated this revision to Diff 354435.
chrisbond added a comment.
restore deprecated enableBreakpointsFor section to package.json to support older vscode releases. newer releases ignore this section.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D104882/new/
https://reviews.llvm.org/D104882
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
@@ -49,6 +49,53 @@
"scopeName": "source.disassembly",
"path": "./syntaxes/disassembly.json"
}
+ ],
+ "breakpoints": [
+ {
+ "language": "ada"
+ },
+ {
+ "language": "arm"
+ },
+ {
+ "language": "asm"
+ },
+ {
+ "language": "c"
+ },
+ {
+ "language": "cpp"
+ },
+ {
+ "language": "crystal"
+ },
+ {
+ "language": "d"
+ },
+ {
+ "language": "fortan"
+ },
+ {
+ "language": "fortran-modern"
+ },
+ {
+ "language": "nim"
+ },
+ {
+ "language": "objective-c"
+ },
+ {
+ "language": "objectpascal"
+ },
+ {
+ "language": "pascal"
+ },
+ {
+ "language": "rust"
+ },
+ {
+ "language": "swift"
+ }
],
"debuggers": [
{
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D104882.354435.patch
Type: text/x-patch
Size: 1312 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/lldb-commits/attachments/20210625/d0b40db1/attachment.bin>
More information about the lldb-commits
mailing list