aboutsummaryrefslogtreecommitdiff
path: root/src/Package/Module.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2024-06-22 16:10:17 -0700
committerAndrew Kelley <andrew@ziglang.org>2024-06-22 22:59:56 -0400
commit0fcd59eadae468284943895f50bc9fc6d1924154 (patch)
tree45e95f4bf8057a80d18dc78f6fea00ac57768455 /src/Package/Module.zig
parent6026bbd0adb445a0edd6defb0b378937dcce7a9b (diff)
downloadzig-0fcd59eadae468284943895f50bc9fc6d1924154.tar.gz
zig-0fcd59eadae468284943895f50bc9fc6d1924154.zip
rename src/Module.zig to src/Zcu.zig
This patch is a pure rename plus only changing the file path in `@import` sites, so it is expected to not create version control conflicts, even when rebasing.
Diffstat (limited to 'src/Package/Module.zig')
-rw-r--r--src/Package/Module.zig4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/Package/Module.zig b/src/Package/Module.zig
index f9cb4475ad..80d7015610 100644
--- a/src/Package/Module.zig
+++ b/src/Package/Module.zig
@@ -1,6 +1,4 @@
//! Corresponds to something that Zig source code can `@import`.
-//! Not to be confused with src/Module.zig which will be renamed
-//! to Zcu. https://github.com/ziglang/zig/issues/14307
/// Only files inside this directory can be imported.
root: Cache.Path,
@@ -518,4 +516,4 @@ const Cache = std.Build.Cache;
const Builtin = @import("../Builtin.zig");
const assert = std.debug.assert;
const Compilation = @import("../Compilation.zig");
-const File = @import("../Module.zig").File;
+const File = @import("../Zcu.zig").File;