Skip to content

Commit

Permalink
fixing imports I hope
Browse files Browse the repository at this point in the history
  • Loading branch information
dleiferives committed May 15, 2024
1 parent 0d9bae0 commit 46608f1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions src/ir/stack/ir.zig
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

pub const std = @import("std");

const Ast = @import("../../ast.zig");
const utils = @import("../../utils.zig");
const log = @import("../../log.zig");
const Ast = @import("../../../ast.zig");
const utils = @import("../../../utils.zig");
const log = @import("../../../log.zig");

pub const InternPool = @import("../intern-pool.zig");
/// The ID of a string stored in the intern pool
Expand Down
6 changes: 3 additions & 3 deletions src/ir/stack/stack.zig
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ const std = @import("std");
const IR = @import("ir.zig");
const Inst = IR.Inst;

const Ast = @import("../../ast.zig");
const log = @import("../../log.zig");
const utils = @import("../../utils.zig");
const Ast = @import("../../../ast.zig");
const log = @import("../../../log.zig");
const utils = @import("../../../utils.zig");

pub const StackGen = @This();
const Ctx = StackGen;
Expand Down
2 changes: 1 addition & 1 deletion src/ir/stack/stringify.zig
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const std = @import("std");
const IR = @import("./ir.zig");
const utils = @import("../utils.zig");
const utils = @import("../../../utils.zig");

const Alloc = std.mem.Allocator;

Expand Down

0 comments on commit 46608f1

Please sign in to comment.