Skip to content

Commit 3a3480c

Browse files
author
Ahmetcan Aksu
authored
Merge pull request #56 from behemehal/v4
V4
2 parents 3d7e924 + cce46ae commit 3a3480c

313 files changed

Lines changed: 9755 additions & 23956 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,7 @@ Release
1111
.gitignore
1212
ei.dmp
1313
.gitignore
14-
test_dir
14+
test_dir
15+
ei.json
16+
tree.json
17+
outputTree.txt

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "EllieAssist"]
2+
path = EllieAssist
3+
url = https://github.com/behemehal/EllieAssist

.insightsIgnore

Lines changed: 0 additions & 30 deletions
This file was deleted.

.vscode/launch.json

Lines changed: 12 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -5,35 +5,31 @@
55
"version": "0.2.0",
66
"configurations": [
77
{
8-
"type": "gdb",
9-
"request": "launch",
10-
"name": "Launch Program",
11-
"target": "/target/debug/ellie.exe",
12-
"args": ["./test_dir/test.ei", "-dstd", "-d"],
13-
"cwd": "${workspaceFolder}",
14-
"valuesFormatting": "parseText"
15-
},
16-
{
17-
"type": "by-gdb",
8+
"type": "lldb",
189
"request": "launch",
19-
"name": "Launch(gdb)",
20-
"program": "/target/debug/ellie.exe",
21-
"target": "/target/debug/ellie.exe",
22-
"args": ["./test_dir/test.ei", "-dstd", "-d"],
10+
"name": "Debug executable file",
11+
"cargo": {
12+
"args": ["build", "--bin=ellie", "--package=ellie_engine"],
13+
"filter": {
14+
"name": "ellie",
15+
"kind": "bin"
16+
}
17+
},
18+
"args": ["./test_dir_/test.ei", "-d"],
2319
"cwd": "${workspaceFolder}"
2420
},
2521
{
2622
"type": "lldb",
2723
"request": "launch",
28-
"name": "Debug executable file",
24+
"name": "Debug builder file",
2925
"cargo": {
3026
"args": ["build", "--bin=ellie", "--package=ellie_engine"],
3127
"filter": {
3228
"name": "ellie",
3329
"kind": "bin"
3430
}
3531
},
36-
"args": ["./test_dir/test.ei", "-dstd", "-d"],
32+
"args": ["./test_dir_/test.ei", "-d"],
3733
"cwd": "${workspaceFolder}"
3834
},
3935
]

0 commit comments

Comments
 (0)