aboutsummaryrefslogtreecommitdiff
path: root/src/Zcu.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2024-07-11 18:28:05 -0700
committerAndrew Kelley <andrew@ziglang.org>2024-07-12 00:15:11 -0700
commit5a34e6c3e608e1f526bababd3a2a146f6216d045 (patch)
tree154864ee4b7841598494d5c4a5449b38de09ed3c /src/Zcu.zig
parenta3c20dffaed77727494d34f7b4b03c0d10771270 (diff)
downloadzig-5a34e6c3e608e1f526bababd3a2a146f6216d045.tar.gz
zig-5a34e6c3e608e1f526bababd3a2a146f6216d045.zip
frontend: add file system inputs for incremental cache mode
These are also used for whole cache mode in the case that any compile errors are emitted.
Diffstat (limited to 'src/Zcu.zig')
-rw-r--r--src/Zcu.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Zcu.zig b/src/Zcu.zig
index a9d80b4fdf..fd1e2f9d61 100644
--- a/src/Zcu.zig
+++ b/src/Zcu.zig
@@ -728,7 +728,7 @@ pub const File = struct {
source_loaded: bool,
tree_loaded: bool,
zir_loaded: bool,
- /// Relative to the owning package's root_src_dir.
+ /// Relative to the owning package's root source directory.
/// Memory is stored in gpa, owned by File.
sub_file_path: []const u8,
/// Whether this is populated depends on `source_loaded`.