feat(ast, ir. sema): Add storage class

This commit is contained in:
2026-06-12 18:33:54 +08:00
parent 5099bbaab7
commit e3aa2e21c0
11 changed files with 217 additions and 45 deletions
+31
View File
@@ -0,0 +1,31 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Debug executable 'compiler'",
"type": "lldb",
"request": "launch",
"cargo": {
"args": [
"run",
"--bin=compiler"
]
},
"args": []
},
{
"name": "Debug unit tests in executable 'compiler'",
"type": "lldb",
"request": "launch",
"cargo": {
"args": [
"test",
"--bin=compiler"
]
}
}
]
}