partway through fixes, macro system needs resdesign
Some checks failed
Rust / build (push) Has been cancelled

This commit is contained in:
2026-04-08 18:02:20 +02:00
parent 0909524dee
commit 9b4c7fa7d7
76 changed files with 1391 additions and 1065 deletions

View File

@@ -4,6 +4,72 @@
"path": "."
}
],
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "Build All",
"command": "cargo",
"options": {
"cwd": "${workspaceFolder}"
},
"type": "shell",
"args": ["build"],
"problemMatcher": [
"$rustc"
],
"presentation": {
"reveal": "always"
},
"group": "build"
}
]
},
"launch": {
"version": "0.2.0",
"configurations": [
{
"name": "(LLDB) Launch",
"type": "lldb",
"request": "launch",
"preLaunchTask": "Build All",
"env": {
"ORCHID_EXTENSIONS": "target/debug/orchid_std",
"ORCHID_DEFAULT_SYSTEMS": "orchid::std;orchid::macros",
},
"cwd": "${workspaceRoot}",
"program": "${workspaceRoot}/target/debug/orcx.exe",
"args": [
"--logs=stderr",
"--logs=debug>stderr",
"--logs=msg>stderr",
"exec",
"1 + 1"
]
},
{
"name": "(Windows) Launch",
"type": "cppvsdbg",
"request": "launch",
"requireExactSource": true,
"preLaunchTask": "Build All",
"environment": [
{ "name": "ORCHID_EXTENSIONS", "value": "target/debug/orchid_std" },
{ "name": "ORCHID_DEFAULT_SYSTEMS", "value": "orchid::std;orchid::macros" },
],
"cwd": "${workspaceRoot}",
"program": "${workspaceRoot}/target/debug/orcx.exe",
"args": [
"--logs=stderr",
"--logs=debug>stderr",
"--logs=msg>stderr",
"exec",
"1 + 1"
]
}
],
"compounds": []
},
"settings": {
"[markdown]": {
// markdown denotes line breaks with trailing space