mirror of
https://github.com/roc-lang/roc.git
synced 2025-10-04 00:54:36 +00:00
Use crate:: prefix a bunch.
This commit is contained in:
parent
d8d8aa292a
commit
be1e83dd6d
44 changed files with 237 additions and 236 deletions
10
src/solve.rs
10
src/solve.rs
|
@ -1,8 +1,8 @@
|
|||
use can::symbol::Symbol;
|
||||
use collections::ImMap;
|
||||
use subs::{Content, Descriptor, FlatType, Subs, Variable};
|
||||
use types::Constraint::{self, *};
|
||||
use types::Type::{self, *};
|
||||
use crate::can::symbol::Symbol;
|
||||
use crate::collections::ImMap;
|
||||
use crate::subs::{Content, Descriptor, FlatType, Subs, Variable};
|
||||
use crate::types::Constraint::{self, *};
|
||||
use crate::types::Type::{self, *};
|
||||
|
||||
type Env = ImMap<Symbol, Variable>;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue