crafting-interpreters/.vscode/launch.json

31 lines
826 B
JSON
Raw Normal View History

2025-05-28 09:05:18 +02:00
{
"$schema": "https://raw.githubusercontent.com/mfussenegger/dapconfig-schema/master/dapconfig-schema.json",
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Run Lox Interpreter",
"cargo": {
"args": [
"build",
"--package",
"rox",
"--message-format",
"json"
]
},
"program": "${workspaceFolder}/target/debug/rox",
"args": [
"run",
"-s",
"./lox/simple_for.lox"
],
"env": {
"RUST_LOG": "debug"
},
"cwd": "${workspaceFolder}"
}
]
}