error handling and transformation improvements

Added vscode config for easy debug including all modules.
This commit is contained in:
jorenchik
2024-09-14 11:50:57 +03:00
parent a83d69aeb2
commit 9d6fa5b995
11 changed files with 11329 additions and 272 deletions

26
src/.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,26 @@
{
// 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": [
{
"name": "Launch Package",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${fileDirname}"
},
{
"name": "Debug with Build Flags",
"type": "go",
"request": "launch",
"mode": "debug",
"program": "${workspaceFolder}/mdemory-app-qt/main.go",
// "buildFlags": "-gcflags='all=-N -l'",
"args": [],
"env": {},
"cwd": "${workspaceFolder}"
}
]
}