Skip to content

Commit a90e06c

Browse files
committed
most stuff works just need to add methods into gen
1 parent 66dde6e commit a90e06c

File tree

23 files changed

+1724
-261
lines changed

23 files changed

+1724
-261
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
/target
2+
/target/*
23
/**/*/target
34
/mc-mappings/mappings
45
mc-mappings/output.txt
56
/.idea
7+
/.idea/*
68
crates/gen_src.rs
79
crates/map-gen/test.ron
810
crates/mc-mappings/mappings

.vscode/c_cpp_properties.json

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

.vscode/launch.json

Lines changed: 121 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
{
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
"version": "0.2.0",
6+
"configurations": [
7+
{
8+
"type": "lldb",
9+
"request": "launch",
10+
"name": "Debug unit tests in library 'jdk-sys'",
11+
"cargo": {
12+
"args": [
13+
"test",
14+
"--no-run",
15+
"--lib",
16+
"--package=jdk-sys"
17+
],
18+
"filter": {
19+
"name": "jdk-sys",
20+
"kind": "lib"
21+
}
22+
},
23+
"args": [],
24+
"cwd": "${workspaceFolder}"
25+
},
26+
{
27+
"type": "lldb",
28+
"request": "launch",
29+
"name": "Debug unit tests in library 'jni'",
30+
"cargo": {
31+
"args": [
32+
"test",
33+
"--no-run",
34+
"--lib",
35+
"--package=jni"
36+
],
37+
"filter": {
38+
"name": "jni",
39+
"kind": "lib"
40+
}
41+
},
42+
"args": [],
43+
"cwd": "${workspaceFolder}"
44+
},
45+
{
46+
"type": "lldb",
47+
"request": "launch",
48+
"name": "Debug unit tests in library 'map-gen'",
49+
"cargo": {
50+
"args": [
51+
"test",
52+
"--no-run",
53+
"--lib",
54+
"--package=map-gen"
55+
],
56+
"filter": {
57+
"name": "map-gen",
58+
"kind": "lib"
59+
}
60+
},
61+
"args": [],
62+
"cwd": "${workspaceFolder}"
63+
},
64+
{
65+
"type": "lldb",
66+
"request": "launch",
67+
"name": "Debug unit tests in library 'mc-mappings'",
68+
"cargo": {
69+
"args": [
70+
"test",
71+
"--no-run",
72+
"--lib",
73+
"--package=mc-mappings"
74+
],
75+
"filter": {
76+
"name": "mc-mappings",
77+
"kind": "lib"
78+
}
79+
},
80+
"args": [],
81+
"cwd": "${workspaceFolder}"
82+
},
83+
{
84+
"type": "lldb",
85+
"request": "launch",
86+
"name": "Debug executable 'mc-mappings'",
87+
"cargo": {
88+
"args": [
89+
"build",
90+
"--bin=mc-mappings",
91+
"--package=mc-mappings"
92+
],
93+
"filter": {
94+
"name": "mc-mappings",
95+
"kind": "bin"
96+
}
97+
},
98+
"args": [],
99+
"cwd": "${workspaceFolder}"
100+
},
101+
{
102+
"type": "lldb",
103+
"request": "launch",
104+
"name": "Debug unit tests in executable 'mc-mappings'",
105+
"cargo": {
106+
"args": [
107+
"test",
108+
"--no-run",
109+
"--bin=mc-mappings",
110+
"--package=mc-mappings"
111+
],
112+
"filter": {
113+
"name": "mc-mappings",
114+
"kind": "bin"
115+
}
116+
},
117+
"args": [],
118+
"cwd": "${workspaceFolder}"
119+
}
120+
]
121+
}

0 commit comments

Comments
 (0)