VSCode rust-panic problem matcher

This commit is contained in:
LuisFerLCC 2023-12-11 21:52:23 -06:00 committed by GitHub
parent 8c3e28e3e2
commit 7251b86cb4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1689,14 +1689,17 @@
{ {
"name": "rust-panic", "name": "rust-panic",
"patterns": [ "patterns": [
{ {
"regexp": "^thread '.*' panicked at '(.*)', (.*):(\\d*):(\\d*)$", "regexp": "^thread '.*' panicked at (.*):(\\d*):(\\d*):$",
"message": 1, "file": 1,
"file": 2, "line": 2,
"line": 3, "column": 3
"column": 4 },
} {
] "regexp": "(.*)",
"message": 1
}
]
} }
], ],
"languages": [ "languages": [