rearrange std.zig

This frees up std.zig.fmt to be used for the implementation of `zig
fmt`.
This commit is contained in:
Andrew Kelley
2024-02-26 18:55:23 -07:00
parent 7b37bc771b
commit a2e87aba66
5 changed files with 127 additions and 120 deletions

View File

@@ -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");