update docs for compile chain

This commit is contained in:
2026-02-20 14:35:48 -06:00
parent 285395807b
commit 2f41f58521
10 changed files with 205 additions and 5 deletions

View File

@@ -72,6 +72,7 @@ cell streamline --stats <file.ce|file.cm> # summary stats per function
cell streamline --ir <file.ce|file.cm> # human-readable IR
cell streamline --check <file.ce|file.cm> # warnings only
cell streamline --types <file.ce|file.cm> # IR with type annotations
cell streamline --diagnose <file.ce|file.cm> # compile-time diagnostics
```
| Flag | Description |
@@ -81,6 +82,7 @@ cell streamline --types <file.ce|file.cm> # IR with type annotations
| `--ir` | Human-readable canonical IR (same format as `ir_report.ce`) |
| `--check` | Warnings only (e.g. `nr_slots > 200` approaching 255 limit) |
| `--types` | Optimized IR with inferred type annotations per slot |
| `--diagnose` | Run compile-time diagnostics (type errors and warnings) |
Flags can be combined.