stage2: rename ZigModule to Module

This commit is contained in:
Andrew Kelley
2020-09-13 19:56:35 -07:00
parent 4d59f77528
commit 2456df5f4e
19 changed files with 95 additions and 96 deletions

View File

@@ -1,7 +1,7 @@
const std = @import("std");
const link = @import("../link.zig");
const Module = @import("../ZigModule.zig");
const Module = @import("../Module.zig");
const Inst = @import("../ir.zig").Inst;
const Value = @import("../value.zig").Value;

View File

@@ -5,7 +5,7 @@ const assert = std.debug.assert;
const leb = std.debug.leb;
const mem = std.mem;
const Module = @import("../ZigModule.zig");
const Module = @import("../Module.zig");
const Decl = Module.Decl;
const Inst = @import("../ir.zig").Inst;
const Type = @import("../type.zig").Type;