| author | |
| committer | |
| log | 49244dc0ca68d4b1282b7b26b52e750a4892fce2 |
| tree | c80cb3b99529c3a9f98074434be1985d41a98019 |
| parent | 373e48c9831c44f15c3209a92779a87348f690fd |
| signature |
11 files changed, 2 insertions(+), 22 deletions(-)
lib/std/child_process.zig-2| ... | @@ -12,8 +12,6 @@ const mem = std.mem; | ... | @@ -12,8 +12,6 @@ const mem = std.mem; |
| 12 | const math = std.math; | 12 | const math = std.math; |
| 13 | const debug = std.debug; | 13 | const debug = std.debug; |
| 14 | const EnvMap = process.EnvMap; | 14 | const EnvMap = process.EnvMap; |
| 15 | const Os = std.builtin.Os; | ||
| 16 | const TailQueue = std.TailQueue; | ||
| 17 | const maxInt = std.math.maxInt; | 15 | const maxInt = std.math.maxInt; |
| 18 | const assert = std.debug.assert; | 16 | const assert = std.debug.assert; |
| 19 | 17 |
lib/std/coff.zig-3| ... | @@ -1,9 +1,6 @@ | ... | @@ -1,9 +1,6 @@ |
| 1 | const std = @import("std.zig"); | 1 | const std = @import("std.zig"); |
| 2 | const assert = std.debug.assert; | 2 | const assert = std.debug.assert; |
| 3 | const io = std.io; | ||
| 4 | const mem = std.mem; | 3 | const mem = std.mem; |
| 5 | const os = std.os; | ||
| 6 | const fs = std.fs; | ||
| 7 | 4 | ||
| 8 | pub const CoffHeaderFlags = packed struct { | 5 | pub const CoffHeaderFlags = packed struct { |
| 9 | /// Image only, Windows CE, and Microsoft Windows NT and later. | 6 | /// Image only, Windows CE, and Microsoft Windows NT and later. |
lib/std/debug.zig-2| ... | @@ -11,9 +11,7 @@ const DW = std.dwarf; | ... | @@ -11,9 +11,7 @@ const DW = std.dwarf; |
| 11 | const macho = std.macho; | 11 | const macho = std.macho; |
| 12 | const coff = std.coff; | 12 | const coff = std.coff; |
| 13 | const pdb = std.pdb; | 13 | const pdb = std.pdb; |
| 14 | const ArrayList = std.ArrayList; | ||
| 15 | const root = @import("root"); | 14 | const root = @import("root"); |
| 16 | const maxInt = std.math.maxInt; | ||
| 17 | const File = std.fs.File; | 15 | const File = std.fs.File; |
| 18 | const windows = std.os.windows; | 16 | const windows = std.os.windows; |
| 19 | const native_arch = builtin.cpu.arch; | 17 | const native_arch = builtin.cpu.arch; |
lib/std/dwarf.zig-1| ... | @@ -3,7 +3,6 @@ const std = @import("std.zig"); | ... | @@ -3,7 +3,6 @@ const std = @import("std.zig"); |
| 3 | const debug = std.debug; | 3 | const debug = std.debug; |
| 4 | const fs = std.fs; | 4 | const fs = std.fs; |
| 5 | const io = std.io; | 5 | const io = std.io; |
| 6 | const os = std.os; | ||
| 7 | const mem = std.mem; | 6 | const mem = std.mem; |
| 8 | const math = std.math; | 7 | const math = std.math; |
| 9 | const leb = @import("leb128.zig"); | 8 | const leb = @import("leb128.zig"); |
lib/std/dynamic_library.zig-2| ... | @@ -2,12 +2,10 @@ const std = @import("std.zig"); | ... | @@ -2,12 +2,10 @@ const std = @import("std.zig"); |
| 2 | const builtin = @import("builtin"); | 2 | const builtin = @import("builtin"); |
| 3 | const mem = std.mem; | 3 | const mem = std.mem; |
| 4 | const os = std.os; | 4 | const os = std.os; |
| 5 | const assert = std.debug.assert; | ||
| 6 | const testing = std.testing; | 5 | const testing = std.testing; |
| 7 | const elf = std.elf; | 6 | const elf = std.elf; |
| 8 | const windows = std.os.windows; | 7 | const windows = std.os.windows; |
| 9 | const system = std.os.system; | 8 | const system = std.os.system; |
| 10 | const maxInt = std.math.maxInt; | ||
| 11 | 9 | ||
| 12 | pub const DynLib = switch (builtin.os.tag) { | 10 | pub const DynLib = switch (builtin.os.tag) { |
| 13 | .linux => if (builtin.link_libc) DlDynlib else ElfDynLib, | 11 | .linux => if (builtin.link_libc) DlDynlib else ElfDynLib, |
lib/std/elf.zig-3| ... | @@ -1,10 +1,7 @@ | ... | @@ -1,10 +1,7 @@ |
| 1 | const std = @import("std.zig"); | 1 | const std = @import("std.zig"); |
| 2 | const io = std.io; | ||
| 3 | const os = std.os; | ||
| 4 | const math = std.math; | 2 | const math = std.math; |
| 5 | const mem = std.mem; | 3 | const mem = std.mem; |
| 6 | const assert = std.debug.assert; | 4 | const assert = std.debug.assert; |
| 7 | const File = std.fs.File; | ||
| 8 | const native_endian = @import("builtin").target.cpu.arch.endian(); | 5 | const native_endian = @import("builtin").target.cpu.arch.endian(); |
| 9 | 6 | ||
| 10 | pub const AT_NULL = 0; | 7 | pub const AT_NULL = 0; |
lib/std/fifo.zig+1-2| ... | @@ -5,8 +5,7 @@ const std = @import("std"); | ... | @@ -5,8 +5,7 @@ const std = @import("std"); |
| 5 | const math = std.math; | 5 | const math = std.math; |
| 6 | const mem = std.mem; | 6 | const mem = std.mem; |
| 7 | const Allocator = mem.Allocator; | 7 | const Allocator = mem.Allocator; |
| 8 | const debug = std.debug; | 8 | const assert = std.debug.assert; |
| 9 | const assert = debug.assert; | ||
| 10 | const testing = std.testing; | 9 | const testing = std.testing; |
| 11 | 10 | ||
| 12 | pub const LinearFifoBufferType = union(enum) { | 11 | pub const LinearFifoBufferType = union(enum) { |
lib/std/hash_map.zig+1-2| ... | @@ -1,8 +1,7 @@ | ... | @@ -1,8 +1,7 @@ |
| 1 | const std = @import("std.zig"); | 1 | const std = @import("std.zig"); |
| 2 | const builtin = @import("builtin"); | 2 | const builtin = @import("builtin"); |
| 3 | const assert = debug.assert; | 3 | const assert = std.debug.assert; |
| 4 | const autoHash = std.hash.autoHash; | 4 | const autoHash = std.hash.autoHash; |
| 5 | const debug = std.debug; | ||
| 6 | const math = std.math; | 5 | const math = std.math; |
| 7 | const mem = std.mem; | 6 | const mem = std.mem; |
| 8 | const meta = std.meta; | 7 | const meta = std.meta; |
lib/std/heap.zig-1| ... | @@ -6,7 +6,6 @@ const testing = std.testing; | ... | @@ -6,7 +6,6 @@ const testing = std.testing; |
| 6 | const mem = std.mem; | 6 | const mem = std.mem; |
| 7 | const os = std.os; | 7 | const os = std.os; |
| 8 | const c = std.c; | 8 | const c = std.c; |
| 9 | const maxInt = std.math.maxInt; | ||
| 10 | const Allocator = std.mem.Allocator; | 9 | const Allocator = std.mem.Allocator; |
| 11 | 10 | ||
| 12 | pub const LoggingAllocator = @import("heap/logging_allocator.zig").LoggingAllocator; | 11 | pub const LoggingAllocator = @import("heap/logging_allocator.zig").LoggingAllocator; |
lib/std/os.zig-3| ... | @@ -25,9 +25,6 @@ const fs = std.fs; | ... | @@ -25,9 +25,6 @@ const fs = std.fs; |
| 25 | const dl = @import("dynamic_library.zig"); | 25 | const dl = @import("dynamic_library.zig"); |
| 26 | const MAX_PATH_BYTES = std.fs.MAX_PATH_BYTES; | 26 | const MAX_PATH_BYTES = std.fs.MAX_PATH_BYTES; |
| 27 | const is_windows = builtin.os.tag == .windows; | 27 | const is_windows = builtin.os.tag == .windows; |
| 28 | const Allocator = std.mem.Allocator; | ||
| 29 | const Preopen = std.fs.wasi.Preopen; | ||
| 30 | const PreopenList = std.fs.wasi.PreopenList; | ||
| 31 | 28 | ||
| 32 | pub const darwin = std.c; | 29 | pub const darwin = std.c; |
| 33 | pub const dragonfly = std.c; | 30 | pub const dragonfly = std.c; |
src/value.zig-1| ... | @@ -8,7 +8,6 @@ const BigIntMutable = std.math.big.int.Mutable; | ... | @@ -8,7 +8,6 @@ const BigIntMutable = std.math.big.int.Mutable; |
| 8 | const Target = std.Target; | 8 | const Target = std.Target; |
| 9 | const Allocator = std.mem.Allocator; | 9 | const Allocator = std.mem.Allocator; |
| 10 | const Module = @import("Module.zig"); | 10 | const Module = @import("Module.zig"); |
| 11 | const Air = @import("Air.zig"); | ||
| 12 | const TypedValue = @import("TypedValue.zig"); | 11 | const TypedValue = @import("TypedValue.zig"); |
| 13 | const Sema = @import("Sema.zig"); | 12 | const Sema = @import("Sema.zig"); |
| 14 | const InternPool = @import("InternPool.zig"); | 13 | const InternPool = @import("InternPool.zig"); |