aboutsummaryrefslogtreecommitdiff
path: root/src/IncrementalDebugServer.zig
AgeCommit message (Collapse)Author
2025-08-28compiler: update to not use GenericWriterAndrew Kelley
2025-07-14std.net: update to new I/O APIAndrew Kelley
2025-07-07compiler: update a bunch of format stringsAndrew Kelley
2025-07-07compiler: fix a bunch of format stringsAndrew Kelley
2025-06-06x86_64: fix switch dispatch bugJacob Young
Also closes #23902
2025-05-25compiler: introduce incremental debug servermlugg
In a compiler built with debug extensions, pass `--debug-incremental` to spawn the "incremental debug server". This is a TCP server exposing a REPL which allows querying a bunch of compiler state, some of which is stored only when that flag is passed. Eventually, this will probably move into `std.zig.Server`/`std.zig.Client`, but this is easier to work with right now. The easiest way to interact with the server is `telnet`.