Adds header parsing with basic arguments

This commit is contained in:
Misha Vicha
2025-09-30 13:23:06 +02:00
parent 28a4a60ea3
commit 8dc16c4210
3 changed files with 367 additions and 2 deletions

45
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,45 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug executable 'wfdb_corrosion'",
"cargo": {
"args": [
"build",
"--bin=wfdb_corrosion",
"--package=wfdb_corrosion"
],
"filter": {
"name": "wfdb_corrosion",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
},
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in executable 'wfdb_corrosion'",
"cargo": {
"args": [
"test",
"--no-run",
"--bin=wfdb_corrosion",
"--package=wfdb_corrosion"
],
"filter": {
"name": "wfdb_corrosion",
"kind": "bin"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}