bolt/.vscode/launch.json
Sam Vervaeck ac7467bccb
Make it possible to nest match-expressions
Although this fixes #46, this introduces a new bug for expressions that
require punctuation to be turned off. We will adress this in a separate
issue.
2023-06-12 22:00:46 +02:00

17 lines
580 B
JSON

{
// 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",
"program": "${workspaceFolder}/build/bolt",
"args": [ "--direct-diagnostics", "check", "test.bolt" ],
"cwd": "${workspaceFolder}",
"preLaunchTask": "CMake: build"
}
]
}