wip
This commit is contained in:
parent
6e02a1a644
commit
463e4abd30
13 changed files with 172 additions and 26 deletions
30
.vscode/launch.json
vendored
Normal file
30
.vscode/launch.json
vendored
Normal file
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
"$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}"
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue