diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2024-02-27 11:03:08 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-02-27 11:03:08 -0800 |
| commit | 6f7354a04151bc0da7f661b46c5b5b3afed96112 (patch) | |
| tree | 78bc876eb5d68f9bde247add51e4e19ecc3a3b2b /lib/std/std.zig | |
| parent | 27f589dea1dae6ec0033e1ad2902fb5dadfa562b (diff) | |
| parent | 97f2a8b5cb4c882e05add16a69c7a55f7fe46794 (diff) | |
| download | zig-6f7354a04151bc0da7f661b46c5b5b3afed96112.tar.gz zig-6f7354a04151bc0da7f661b46c5b5b3afed96112.zip | |
Merge pull request #19102 from ziglang/decouple-zir
JIT `zig fmt` and `zig reduce`
Diffstat (limited to 'lib/std/std.zig')
| -rw-r--r-- | lib/std/std.zig | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/std/std.zig b/lib/std/std.zig index 98a1bba0dd..0781c877cf 100644 --- a/lib/std/std.zig +++ b/lib/std/std.zig @@ -193,7 +193,9 @@ pub const valgrind = @import("valgrind.zig"); /// Constants and types representing the Wasm binary format. pub const wasm = @import("wasm.zig"); -/// Tokenizing and parsing of Zig code and other Zig-specific language tooling. +/// Builds of the Zig compiler are distributed partly in source form. That +/// source lives here. These APIs are provided as-is and have absolutely no API +/// guarantees whatsoever. pub const zig = @import("zig.zig"); pub const start = @import("start.zig"); |
