move AstGen to std.zig.AstGen

Part of an effort to ship more of the compiler in source form.
This commit is contained in:
Andrew Kelley
2024-02-26 21:51:19 -07:00
parent a2e87aba66
commit b116063e02
7 changed files with 6 additions and 5 deletions

View File

@@ -28,7 +28,7 @@ const link = @import("link.zig");
const Air = @import("Air.zig");
const Zir = std.zig.Zir;
const trace = @import("tracy.zig").trace;
const AstGen = @import("AstGen.zig");
const AstGen = std.zig.AstGen;
const Sema = @import("Sema.zig");
const target_util = @import("target.zig");
const build_options = @import("build_options");