31 lines
826 B
JSON
31 lines
826 B
JSON
|
{
|
||
|
"$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}"
|
||
|
}
|
||
|
]
|
||
|
}
|