Files
m3te/.vscode/launch.json
swipelab 6f7d2f4db2 lang migration: rename signed integer types sN -> iN
Mechanical sweep of all .sx sources, plan docs, and tests/expected
snapshots for the sx language rename (s8/s16/s32/s64 -> i8/i16/i32/i64).
Verified: tools/run_tests.sh 23/23.

Note: the ios-sim build has 2 pre-existing 'restart' dot-call errors
from the sx opt-in UFCS change (sx a47ea14) — independent of this
rename (present pre-sweep); migrated in the follow-up commit.
2026-06-12 09:36:51 +03:00

28 lines
759 B
JSON

{
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug M3te (macOS)",
"program": "${workspaceFolder}/sx-out/macos/M3te.app/Contents/MacOS/M3te",
"cwd": "${workspaceFolder}",
"preLaunchTask": "sx build (macos debug)"
},
{
"type": "lldb",
"request": "custom",
"name": "Debug M3te (iOS sim)",
"preLaunchTask": "sx build+launch (ios-sim debug)",
"targetCreateCommands": [
"target create '${workspaceFolder}/sx-out/ios/M3te.app/M3te'"
],
"processCreateCommands": [
"process attach -n M3te",
"process handle SIGSTOP --notify false --stop false --pass false",
"process continue"
]
}
]
}