mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 22:34:45 +00:00
Get a failing specialize_expr test
This commit is contained in:
parent
2af00caa9c
commit
ed6ad1bc82
31 changed files with 437 additions and 4949 deletions
|
@ -60,6 +60,16 @@ pub struct Env {
|
|||
pub home: ModuleId,
|
||||
}
|
||||
|
||||
impl Env {
|
||||
pub fn new(home: ModuleId) -> Self {
|
||||
Self {
|
||||
rigids: MutMap::default(),
|
||||
resolutions_to_make: Vec::new(),
|
||||
home,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn constrain_untyped_args(
|
||||
types: &mut Types,
|
||||
constraints: &mut Constraints,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue