mirror of
https://codeberg.org/ziglang/zig.git
synced 2026-05-30 21:07:34 +03:00
configure runner: serialization of Module
This commit is contained in:
@@ -1,3 +1,11 @@
|
||||
const Module = @This();
|
||||
|
||||
const std = @import("std");
|
||||
const assert = std.debug.assert;
|
||||
const LazyPath = std.Build.LazyPath;
|
||||
const Step = std.Build.Step;
|
||||
const ArrayList = std.ArrayList;
|
||||
|
||||
/// The one responsible for creating this module.
|
||||
owner: *std.Build,
|
||||
root_source_file: ?LazyPath,
|
||||
@@ -703,10 +711,3 @@ pub fn getGraph(root: *Module) Graph {
|
||||
root.cached_graph = result;
|
||||
return result;
|
||||
}
|
||||
|
||||
const Module = @This();
|
||||
const std = @import("std");
|
||||
const assert = std.debug.assert;
|
||||
const LazyPath = std.Build.LazyPath;
|
||||
const Step = std.Build.Step;
|
||||
const ArrayList = std.ArrayList;
|
||||
|
||||
Reference in New Issue
Block a user