Skip to content

Commit ab0879a

Browse files
committed
update debug trace
1 parent 03d89e8 commit ab0879a

File tree

9 files changed

+312
-78
lines changed

9 files changed

+312
-78
lines changed

.vscode/launch.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"configurations": [
3+
{
4+
"type": "lldb",
5+
"request": "launch",
6+
"name": "Debug executable 'luars-interpreter'",
7+
"cargo": {
8+
"args": [
9+
"build",
10+
"--bin=lua",
11+
"--package=luars_interpreter",
12+
"--target=x86_64-pc-windows-gnu",
13+
],
14+
"filter": {
15+
"name": "lua",
16+
"kind": "bin"
17+
}
18+
},
19+
"args": [
20+
"test_simple.lua"
21+
],
22+
"cwd": "${workspaceFolder}"
23+
},
24+
]
25+
}

0 commit comments

Comments
 (0)