diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2023-10-06 21:29:08 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2023-10-08 16:54:31 -0700 |
| commit | f708c5fafc5087a2518e0dc7acf986b59673dddd (patch) | |
| tree | 0520ae635c4a0b643ba9b33cb6fcdf1ff08e115e /src/Package/Module.zig | |
| parent | 1c0d6f9c0020188326560e058baf36b8034d76e5 (diff) | |
| download | zig-f708c5fafc5087a2518e0dc7acf986b59673dddd.tar.gz zig-f708c5fafc5087a2518e0dc7acf986b59673dddd.zip | |
CLI: finish updating module API usage
Finish the work started in 4c4fb839972f66f55aa44fc0aca5f80b0608c731.
Now the compiler compiles again.
Wire up dependency tree fetching code in the CLI for `zig build`.
Everything is hooked up except for `createDependenciesModule` is not yet
implemented.
Diffstat (limited to 'src/Package/Module.zig')
| -rw-r--r-- | src/Package/Module.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Package/Module.zig b/src/Package/Module.zig index f2accc104d..3502def385 100644 --- a/src/Package/Module.zig +++ b/src/Package/Module.zig @@ -8,7 +8,7 @@ root: Package.Path, root_src_path: []const u8, /// The dependency table of this module. Shared dependencies such as 'std', /// 'builtin', and 'root' are not specified in every dependency table, but -/// instead only in the table of `main_pkg`. `Module.importFile` is +/// instead only in the table of `main_mod`. `Module.importFile` is /// responsible for detecting these names and using the correct package. deps: Deps = .{}, |
