Skip to content

Commit

Permalink
fixing LLDB launcher for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonwilliams committed Mar 8, 2020
1 parent b648ebb commit 23342da
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@
"windows": {
"program": "${workspaceFolder}/target/debug/boa_cli.exe"
},
"osx": {
"program": "${workspaceFolder}/target/debug/boa_cli"
},
"program": "${workspaceFolder}/target/debug/boa_cli",
"args": ["${workspaceFolder}/tests/js/test.js"],
"sourceLanguages": ["rust"]
},
{
"name": "(Windows) Launch",
"type": "cppvsdbg",
"request": "launch",
"args": ["${workspaceFolder}/tests/js/test.js"],
"program": "${workspaceFolder}/target/debug/boa_cli.exe",
"cwd": "${workspaceFolder}",
"sourceFileMap": {
Expand Down

0 comments on commit 23342da

Please sign in to comment.