move the cache system from compiler to std lib

This commit is contained in:
Andrew Kelley
2023-02-05 19:39:04 -07:00
parent 2654d0c668
commit 9cb52ca6ce
16 changed files with 104 additions and 98 deletions

View File

@@ -16,7 +16,7 @@ const Ast = std.zig.Ast;
const Module = @This();
const Compilation = @import("Compilation.zig");
const Cache = @import("Cache.zig");
const Cache = std.Build.Cache;
const Value = @import("value.zig").Value;
const Type = @import("type.zig").Type;
const TypedValue = @import("TypedValue.zig");