| ... | @@ -427,7 +427,6 @@ pub fn main(init: process.Init.Minimal) !void { | ... | @@ -427,7 +427,6 @@ pub fn main(init: process.Init.Minimal) !void { |
| 427 | }; | 427 | }; |
| 428 | const c = &configuration; | 428 | const c = &configuration; |
| 429 | var top_level_steps: std.StringArrayHashMapUnmanaged(Configuration.Step.Index) = .empty; | 429 | var top_level_steps: std.StringArrayHashMapUnmanaged(Configuration.Step.Index) = .empty; |
| 430 | var modules: std.AutoArrayHashMapUnmanaged(Configuration.Module.Index, void) = .empty; | | |
| 431 | for (configuration.steps, 0..) |*conf_step, step_index_usize| { | 430 | for (configuration.steps, 0..) |*conf_step, step_index_usize| { |
| 432 | if (conf_step.owner != .root) continue; | 431 | if (conf_step.owner != .root) continue; |
| 433 | const step_index: Configuration.Step.Index = @enumFromInt(step_index_usize); | 432 | const step_index: Configuration.Step.Index = @enumFromInt(step_index_usize); |
| ... | @@ -437,10 +436,6 @@ pub fn main(init: process.Init.Minimal) !void { | ... | @@ -437,10 +436,6 @@ pub fn main(init: process.Init.Minimal) !void { |
| 437 | const name = step_index.ptr(c).name.slice(c); | 436 | const name = step_index.ptr(c).name.slice(c); |
| 438 | try top_level_steps.put(arena, name, step_index); | 437 | try top_level_steps.put(arena, name, step_index); |
| 439 | }, | 438 | }, |
| 440 | .compile => { | | |
| 441 | const root_module = step_index.ptr(c).extended.get(configuration.extra).compile.root_module; | | |
| 442 | try modules.put(arena, root_module, {}); | | |
| 443 | }, | | |
| 444 | else => {}, | 439 | else => {}, |
| 445 | } | 440 | } |
| 446 | } | 441 | } |
| ... | @@ -450,7 +445,6 @@ pub fn main(init: process.Init.Minimal) !void { | ... | @@ -450,7 +445,6 @@ pub fn main(init: process.Init.Minimal) !void { |
| 450 | break :sc .{ | 445 | break :sc .{ |
| 451 | .configuration = configuration, | 446 | .configuration = configuration, |
| 452 | .top_level_steps = top_level_steps, | 447 | .top_level_steps = top_level_steps, |
| 453 | .modules = modules, | | |
| 454 | }; | 448 | }; |
| 455 | }; | 449 | }; |
| 456 | | 450 | |