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",
"patterns": [
{
"regexp": "^thread '.*' panicked at '(.*)', (.*):(\\d*):(\\d*)$",
"message": 1,
"file": 2,
"line": 3,
"column": 4
}
]
{
"regexp": "^thread '.*' panicked at (.*):(\\d*):(\\d*):$",
"file": 1,
"line": 2,
"column": 3
},
{
"regexp": "(.*)",
"message": 1
}
]
}
],
"languages": [