classes work, excluding name and constructor/super

Former-commit-id: 818d014931
This commit is contained in:
Jarred Sumner
2021-05-02 13:04:55 -07:00
parent 3050d5a1a4
commit 97cb54de2e
12 changed files with 10816 additions and 10342 deletions

6
.vscode/tasks.json vendored
View File

@@ -25,7 +25,7 @@
"label": "test",
"type": "process",
"command": "zig",
"args": ["test", "${file}"],
"args": ["test", "${file}", "--main-pkg-path", "${workspaceFolder}"],
"group": {
"kind": "test",
@@ -33,7 +33,9 @@
},
"presentation": {
"showReuseMessage": false,
"clear": true
"clear": true,
"panel": "new",
"reveal": "always"
}
}
]