mirror of
https://github.com/roc-lang/roc.git
synced 2025-12-23 08:48:03 +00:00
Don't use inline imports
This commit is contained in:
parent
53a298ddde
commit
ed19b7d58e
1 changed files with 2 additions and 1 deletions
|
|
@ -21,6 +21,7 @@ const Tag = @import("types.zig").Tag;
|
|||
const Num = @import("types.zig").Num;
|
||||
const NominalType = @import("types.zig").NominalType;
|
||||
const Tuple = @import("types.zig").Tuple;
|
||||
const Rank = @import("types.zig").Rank;
|
||||
const Ident = base.Ident;
|
||||
|
||||
/// Type to manage instantiation.
|
||||
|
|
@ -71,7 +72,7 @@ pub const Instantiate = struct {
|
|||
|
||||
pub const Ctx = struct {
|
||||
rigid_var_subs: *RigidToFlexSubs,
|
||||
current_rank: @import("types.zig").Rank = @import("types.zig").Rank.top_level,
|
||||
current_rank: Rank = Rank.top_level,
|
||||
};
|
||||
|
||||
// instantiation //
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue