Record problems in unification

This commit is contained in:
Richard Feldman 2019-12-07 19:43:31 -05:00
parent e949c56f70
commit ca219a1b64
8 changed files with 114 additions and 113 deletions

View file

@ -3,11 +3,17 @@ use crate::collections::ImMap;
use crate::solve::solve; use crate::solve::solve;
use crate::subs::{Content, Subs, Variable}; use crate::subs::{Content, Subs, Variable};
use crate::types::Constraint; use crate::types::Constraint;
use crate::unify::Problems;
pub fn infer_expr(subs: &mut Subs, constraint: &Constraint, expr_var: Variable) -> Content { pub fn infer_expr(
subs: &mut Subs,
problems: &mut Problems,
constraint: &Constraint,
expr_var: Variable,
) -> Content {
let env: ImMap<Symbol, Variable> = ImMap::default(); let env: ImMap<Symbol, Variable> = ImMap::default();
solve(&env, subs, constraint); solve(&env, problems, subs, constraint);
subs.get(expr_var).content subs.get(expr_var).content
} }

View file

@ -1,6 +1,7 @@
use crate::can::def::Def; use crate::can::def::Def;
use crate::can::module::{canonicalize_module_defs, Module}; use crate::can::module::{canonicalize_module_defs, Module};
use crate::can::scope::Scope; use crate::can::scope::Scope;
use crate::unify::Problems;
use crate::can::symbol::Symbol; use crate::can::symbol::Symbol;
use crate::collections::{ImMap, SendMap, SendSet}; use crate::collections::{ImMap, SendMap, SendSet};
use crate::ident::Ident; use crate::ident::Ident;
@ -348,7 +349,7 @@ fn expose(
} }
} }
pub fn solve_loaded(module: &Module, subs: &mut Subs, loaded_deps: LoadedDeps) { pub fn solve_loaded(module: &Module, problems: &mut Problems, subs: &mut Subs, loaded_deps: LoadedDeps) {
use LoadedModule::*; use LoadedModule::*;
let mut vars_by_symbol: ImMap<Symbol, Variable> = ImMap::default(); let mut vars_by_symbol: ImMap<Symbol, Variable> = ImMap::default();
@ -403,8 +404,8 @@ pub fn solve_loaded(module: &Module, subs: &mut Subs, loaded_deps: LoadedDeps) {
} }
for constraint in constraints { for constraint in constraints {
solve(&vars_by_symbol, subs, &constraint); solve(&vars_by_symbol, problems, subs, &constraint);
} }
solve(&vars_by_symbol, subs, &module.constraint); solve(&vars_by_symbol, problems, subs, &module.constraint);
} }

View file

@ -3,11 +3,16 @@ use crate::collections::ImMap;
use crate::subs::{Content, Descriptor, FlatType, Subs, Variable}; use crate::subs::{Content, Descriptor, FlatType, Subs, Variable};
use crate::types::Constraint::{self, *}; use crate::types::Constraint::{self, *};
use crate::types::Type::{self, *}; use crate::types::Type::{self, *};
use crate::unify::unify; use crate::unify::{unify, Problems};
type Env = ImMap<Symbol, Variable>; type Env = ImMap<Symbol, Variable>;
pub fn solve(vars_by_symbol: &Env, subs: &mut Subs, constraint: &Constraint) { pub fn solve(
vars_by_symbol: &Env,
problems: &mut Problems,
subs: &mut Subs,
constraint: &Constraint,
) {
match constraint { match constraint {
True => (), True => (),
Eq(typ, expected_type, _region) => { Eq(typ, expected_type, _region) => {
@ -15,7 +20,7 @@ pub fn solve(vars_by_symbol: &Env, subs: &mut Subs, constraint: &Constraint) {
let actual = type_to_var(subs, typ.clone()); let actual = type_to_var(subs, typ.clone());
let expected = type_to_var(subs, expected_type.clone().get_type()); let expected = type_to_var(subs, expected_type.clone().get_type());
unify(subs, actual, expected); unify(subs, problems, actual, expected);
} }
Lookup(symbol, expected_type, _region) => { Lookup(symbol, expected_type, _region) => {
// TODO use region? // TODO use region?
@ -29,11 +34,11 @@ pub fn solve(vars_by_symbol: &Env, subs: &mut Subs, constraint: &Constraint) {
})); }));
let expected = type_to_var(subs, expected_type.clone().get_type()); let expected = type_to_var(subs, expected_type.clone().get_type());
unify(subs, actual, expected); unify(subs, problems, actual, expected);
} }
And(sub_constraints) => { And(sub_constraints) => {
for sub_constraint in sub_constraints.iter() { for sub_constraint in sub_constraints.iter() {
solve(vars_by_symbol, subs, sub_constraint); solve(vars_by_symbol, problems, subs, sub_constraint);
} }
} }
Pattern(_region, _category, typ, expected) => { Pattern(_region, _category, typ, expected) => {
@ -41,18 +46,18 @@ pub fn solve(vars_by_symbol: &Env, subs: &mut Subs, constraint: &Constraint) {
let actual = type_to_var(subs, typ.clone()); let actual = type_to_var(subs, typ.clone());
let expected = type_to_var(subs, expected.clone().get_type()); let expected = type_to_var(subs, expected.clone().get_type());
unify(subs, actual, expected); unify(subs, problems, actual, expected);
} }
Let(let_con) => { Let(let_con) => {
match &let_con.ret_constraint { match &let_con.ret_constraint {
True => { True => {
// If the return expression is guaranteed to solve, // If the return expression is guaranteed to solve,
// solve the assignments themselves and move on. // solve the assignments themselves and move on.
solve(vars_by_symbol, subs, &let_con.defs_constraint) solve(vars_by_symbol, problems, subs, &let_con.defs_constraint)
} }
ret_con => { ret_con => {
// Solve the assignments' constraints first. // Solve the assignments' constraints first.
solve(vars_by_symbol, subs, &let_con.defs_constraint); solve(vars_by_symbol, problems, subs, &let_con.defs_constraint);
// Add a variable for each assignment to the vars_by_symbol. // Add a variable for each assignment to the vars_by_symbol.
let mut new_vars_by_symbol = vars_by_symbol.clone(); let mut new_vars_by_symbol = vars_by_symbol.clone();
@ -69,7 +74,7 @@ pub fn solve(vars_by_symbol: &Env, subs: &mut Subs, constraint: &Constraint) {
// Now solve the body, using the new vars_by_symbol which includes // Now solve the body, using the new vars_by_symbol which includes
// the assignments' name-to-variable mappings. // the assignments' name-to-variable mappings.
solve(&new_vars_by_symbol, subs, &ret_con); solve(&new_vars_by_symbol, problems, subs, &ret_con);
// TODO do an occurs check for each of the assignments! // TODO do an occurs check for each of the assignments!
} }

View file

@ -16,15 +16,11 @@ struct RecordStructure {
ext: Variable, ext: Variable,
} }
type UnifyResult = Result<(), Problem>; pub type Problems = Vec<Problem>;
type Problems = Vec<Problem>;
#[inline(always)] #[inline(always)]
pub fn unify(subs: &mut Subs, var1: Variable, var2: Variable) -> UnifyResult { pub fn unify(subs: &mut Subs, problems: &mut Problems, var1: Variable, var2: Variable) {
if subs.equivalent(var1, var2) { if !subs.equivalent(var1, var2) {
Ok(())
} else {
let ctx = Context { let ctx = Context {
first: var1, first: var1,
first_desc: subs.get(var1), first_desc: subs.get(var1),
@ -32,21 +28,24 @@ pub fn unify(subs: &mut Subs, var1: Variable, var2: Variable) -> UnifyResult {
second_desc: subs.get(var2), second_desc: subs.get(var2),
}; };
unify_context(subs, ctx) unify_context(subs, problems, ctx)
} }
} }
fn unify_context(subs: &mut Subs, ctx: Context) -> UnifyResult { fn unify_context(subs: &mut Subs, problems: &mut Problems, ctx: Context) {
match &ctx.first_desc.content { match &ctx.first_desc.content {
FlexVar(opt_name) => unify_flex(subs, &ctx, opt_name, &ctx.second_desc.content), FlexVar(opt_name) => unify_flex(subs, problems, &ctx, opt_name, &ctx.second_desc.content),
RigidVar(name) => unify_rigid(subs, &ctx, name, &ctx.second_desc.content), RigidVar(name) => unify_rigid(subs, problems, &ctx, name, &ctx.second_desc.content),
Structure(flat_type) => unify_structure(subs, &ctx, flat_type, &ctx.second_desc.content), Structure(flat_type) => {
Alias(home, name, args, real_var) => unify_alias(subs, &ctx, home, name, args, real_var), unify_structure(subs, problems, &ctx, flat_type, &ctx.second_desc.content)
}
Alias(home, name, args, real_var) => {
unify_alias(subs, problems, &ctx, home, name, args, real_var)
}
Error(problem) => { Error(problem) => {
// Error propagates. Whatever we're comparing it to doesn't matter! // Error propagates. Whatever we're comparing it to doesn't matter!
merge(subs, &ctx, Error(problem.clone())); merge(subs, &ctx, Error(problem.clone()));
problems.push(problem.clone());
Err(problem.clone())
} }
} }
} }
@ -54,12 +53,13 @@ fn unify_context(subs: &mut Subs, ctx: Context) -> UnifyResult {
#[inline(always)] #[inline(always)]
fn unify_alias( fn unify_alias(
subs: &mut Subs, subs: &mut Subs,
problems: &mut Problems,
ctx: &Context, ctx: &Context,
home: &ModuleName, home: &ModuleName,
name: &Uppercase, name: &Uppercase,
args: &Vec<(Lowercase, Variable)>, args: &Vec<(Lowercase, Variable)>,
real_var: &Variable, real_var: &Variable,
) -> UnifyResult { ) {
let other_content = &ctx.second_desc.content; let other_content = &ctx.second_desc.content;
match other_content { match other_content {
@ -70,46 +70,35 @@ fn unify_alias(
&ctx, &ctx,
Alias(home.clone(), name.clone(), args.clone(), *real_var), Alias(home.clone(), name.clone(), args.clone(), *real_var),
); );
Ok(())
} }
RigidVar(_) => unify(subs, *real_var, ctx.second), RigidVar(_) => unify(subs, problems, *real_var, ctx.second),
Alias(other_home, other_name, other_args, other_real_var) => { Alias(other_home, other_name, other_args, other_real_var) => {
if name == other_name && home == other_home { if name == other_name && home == other_home {
if args.len() == other_args.len() { if args.len() == other_args.len() {
let mut answer = Ok(());
for ((_, l_var), (_, r_var)) in args.iter().zip(other_args.iter()) { for ((_, l_var), (_, r_var)) in args.iter().zip(other_args.iter()) {
let result = unify(subs, *l_var, *r_var); unify(subs, problems, *l_var, *r_var);
answer = answer.and_then(|()| result);
} }
merge(subs, &ctx, other_content.clone()); merge(subs, &ctx, other_content.clone());
answer
} else if args.len() > other_args.len() { } else if args.len() > other_args.len() {
let problem = Problem::ExtraArguments; let problem = Problem::ExtraArguments;
merge(subs, &ctx, Error(problem.clone())); merge(subs, &ctx, Error(problem.clone()));
problems.push(problem.clone());
Err(problem)
} else { } else {
let problem = Problem::MissingArguments; let problem = Problem::MissingArguments;
merge(subs, &ctx, Error(problem.clone())); merge(subs, &ctx, Error(problem.clone()));
problems.push(problem.clone());
Err(problem)
} }
} else { } else {
unify(subs, *real_var, *other_real_var) unify(subs, problems, *real_var, *other_real_var)
} }
} }
Structure(_) => unify(subs, *real_var, ctx.second), Structure(_) => unify(subs, problems, *real_var, ctx.second),
Error(problem) => { Error(problem) => {
merge(subs, ctx, Error(problem.clone())); merge(subs, ctx, Error(problem.clone()));
problems.push(problem.clone());
Err(problem.clone())
} }
} }
} }
@ -117,44 +106,42 @@ fn unify_alias(
#[inline(always)] #[inline(always)]
fn unify_structure( fn unify_structure(
subs: &mut Subs, subs: &mut Subs,
problems: &mut Problems,
ctx: &Context, ctx: &Context,
flat_type: &FlatType, flat_type: &FlatType,
other: &Content, other: &Content,
) -> UnifyResult { ) {
match other { match other {
FlexVar(_) => { FlexVar(_) => {
// If the other is flex, Structure wins! // If the other is flex, Structure wins!
merge(subs, ctx, Structure(flat_type.clone())); merge(subs, ctx, Structure(flat_type.clone()));
Ok(())
} }
RigidVar(_) => { RigidVar(_) => {
let problem = Problem::GenericMismatch; let problem = Problem::GenericMismatch;
// Type mismatch! Rigid can only unify with flex. // Type mismatch! Rigid can only unify with flex.
merge(subs, ctx, Error(problem.clone())); merge(subs, ctx, Error(problem.clone()));
problems.push(problem.clone());
Err(problem)
} }
Structure(ref other_flat_type) => { Structure(ref other_flat_type) => {
// Unify the two flat types // Unify the two flat types
unify_flat_type(subs, ctx, flat_type, other_flat_type) unify_flat_type(subs, problems, ctx, flat_type, other_flat_type)
} }
Alias(_, _, _, real_var) => unify(subs, ctx.first, *real_var), Alias(_, _, _, real_var) => unify(subs, problems, ctx.first, *real_var),
Error(problem) => { Error(problem) => {
// Error propagates. // Error propagates.
merge(subs, ctx, Error(problem.clone())); merge(subs, ctx, Error(problem.clone()));
problems.push(problem.clone());
Err(problem.clone())
} }
} }
} }
fn unify_record( fn unify_record(
subs: &mut Subs, subs: &mut Subs,
problems: &mut Problems,
ctx: &Context, ctx: &Context,
rec1: RecordStructure, rec1: RecordStructure,
rec2: RecordStructure, rec2: RecordStructure,
) -> UnifyResult { ) {
let fields1 = rec1.fields; let fields1 = rec1.fields;
let fields2 = rec2.fields; let fields2 = rec2.fields;
let shared_fields = fields1 let shared_fields = fields1
@ -165,8 +152,15 @@ fn unify_record(
if unique_fields1.is_empty() { if unique_fields1.is_empty() {
if unique_fields2.is_empty() { if unique_fields2.is_empty() {
unify(subs, rec1.ext, rec2.ext); unify(subs, problems, rec1.ext, rec2.ext);
unify_shared_fields(subs, ctx, shared_fields, ImMap::default(), rec1.ext) unify_shared_fields(
subs,
problems,
ctx,
shared_fields,
ImMap::default(),
rec1.ext,
)
} else { } else {
// subRecord <- fresh context (Structure (Record1 uniqueFields2 ext2)) // subRecord <- fresh context (Structure (Record1 uniqueFields2 ext2))
// subUnify ext1 subRecord // subUnify ext1 subRecord
@ -193,18 +187,23 @@ fn unify_record(
fn unify_shared_fields( fn unify_shared_fields(
subs: &mut Subs, subs: &mut Subs,
problems: &mut Problems,
ctx: &Context, ctx: &Context,
shared_fields: ImMap<Lowercase, (Variable, Variable)>, shared_fields: ImMap<Lowercase, (Variable, Variable)>,
other_fields: ImMap<Lowercase, Variable>, other_fields: ImMap<Lowercase, Variable>,
ext: Variable, ext: Variable,
) -> UnifyResult { ) {
let mut matching_fields = ImMap::default(); let mut matching_fields = ImMap::default();
let num_shared_fields = shared_fields.len(); let num_shared_fields = shared_fields.len();
for (name, (actual, expected)) in shared_fields { for (name, (actual, expected)) in shared_fields {
let prev_problem_count = problems.len();
// TODO another way to do this might be to pass around a problems vec // TODO another way to do this might be to pass around a problems vec
// and check to see if its length increased after doing this unification. // and check to see if its length increased after doing this unification.
if unify(subs, actual, expected).is_ok() { unify(subs, problems, actual, expected);
if problems.len() == prev_problem_count {
matching_fields.insert(name, actual); matching_fields.insert(name, actual);
} }
} }
@ -213,43 +212,43 @@ fn unify_shared_fields(
let flat_type = FlatType::Record(matching_fields.union(other_fields), ext); let flat_type = FlatType::Record(matching_fields.union(other_fields), ext);
merge(subs, ctx, Structure(flat_type)); merge(subs, ctx, Structure(flat_type));
Ok(())
} else { } else {
let problem = Problem::GenericMismatch; let problem = Problem::GenericMismatch;
// Type mismatch! Rigid can only unify with flex. // Type mismatch! Rigid can only unify with flex.
merge(subs, ctx, Error(problem.clone())); merge(subs, ctx, Error(problem.clone()));
problems.push(problem.clone());
Err(problem)
} }
} }
#[inline(always)] #[inline(always)]
fn unify_flat_type( fn unify_flat_type(
subs: &mut Subs, subs: &mut Subs,
problems: &mut Problems,
ctx: &Context, ctx: &Context,
left: &FlatType, left: &FlatType,
right: &FlatType, right: &FlatType,
) -> UnifyResult { ) {
use crate::subs::FlatType::*; use crate::subs::FlatType::*;
match (left, right) { match (left, right) {
(EmptyRecord, EmptyRecord) => { (EmptyRecord, EmptyRecord) => {
merge(subs, ctx, Structure(left.clone())); merge(subs, ctx, Structure(left.clone()));
Ok(())
} }
(Record(fields, ext), EmptyRecord) if fields.is_empty() => unify(subs, *ext, ctx.second), (Record(fields, ext), EmptyRecord) if fields.is_empty() => {
unify(subs, problems, *ext, ctx.second)
}
(EmptyRecord, Record(fields, ext)) if fields.is_empty() => unify(subs, ctx.first, *ext), (EmptyRecord, Record(fields, ext)) if fields.is_empty() => {
unify(subs, problems, ctx.first, *ext)
}
(Record(fields1, ext1), Record(fields2, ext2)) => { (Record(fields1, ext1), Record(fields2, ext2)) => {
let rec1 = gather_fields(subs, fields1.clone(), *ext1); let rec1 = gather_fields(subs, problems, fields1.clone(), *ext1);
let rec2 = gather_fields(subs, fields2.clone(), *ext2); let rec2 = gather_fields(subs, problems, fields2.clone(), *ext2);
unify_record(subs, ctx, rec1, rec2) unify_record(subs, problems, ctx, rec1, rec2)
} }
( (
Apply { Apply {
@ -263,7 +262,7 @@ fn unify_flat_type(
args: r_args, args: r_args,
}, },
) if l_module_name == r_module_name && l_type_name == r_type_name => { ) if l_module_name == r_module_name && l_type_name == r_type_name => {
unify_zip(subs, l_args.iter(), r_args.iter()); unify_zip(subs, problems, l_args.iter(), r_args.iter());
merge( merge(
subs, subs,
@ -274,72 +273,61 @@ fn unify_flat_type(
args: (*r_args).clone(), args: (*r_args).clone(),
}), }),
); );
Ok(())
} }
(Func(l_args, l_ret), Func(r_args, r_ret)) => { (Func(l_args, l_ret), Func(r_args, r_ret)) => {
if l_args.len() == r_args.len() { if l_args.len() == r_args.len() {
unify_zip(subs, l_args.iter(), r_args.iter()); unify_zip(subs, problems, l_args.iter(), r_args.iter());
let answer = unify(subs, *l_ret, *r_ret); unify(subs, problems, *l_ret, *r_ret);
merge(subs, ctx, Structure(Func((*r_args).clone(), *r_ret))); merge(subs, ctx, Structure(Func((*r_args).clone(), *r_ret)));
answer
} else if l_args.len() > r_args.len() { } else if l_args.len() > r_args.len() {
merge(subs, ctx, Error(Problem::ExtraArguments)); merge(subs, ctx, Error(Problem::ExtraArguments));
Ok(())
} else { } else {
merge(subs, ctx, Error(Problem::MissingArguments)); merge(subs, ctx, Error(Problem::MissingArguments));
Ok(())
} }
} }
_ => { _ => {
let problem = Problem::GenericMismatch; let problem = Problem::GenericMismatch;
merge(subs, ctx, Error(problem.clone())); merge(subs, ctx, Error(problem.clone()));
problems.push(problem.clone());
Err(problem)
} }
} }
} }
fn unify_zip<'a, I>(subs: &mut Subs, left_iter: I, right_iter: I) fn unify_zip<'a, I>(subs: &mut Subs, problems: &mut Problems, left_iter: I, right_iter: I)
where where
I: Iterator<Item = &'a Variable>, I: Iterator<Item = &'a Variable>,
{ {
for (&l_var, &r_var) in left_iter.zip(right_iter) { for (&l_var, &r_var) in left_iter.zip(right_iter) {
unify(subs, l_var, r_var); unify(subs, problems, l_var, r_var);
} }
} }
#[inline(always)] #[inline(always)]
fn unify_rigid(subs: &mut Subs, ctx: &Context, name: &str, other: &Content) -> UnifyResult { fn unify_rigid(
subs: &mut Subs,
problems: &mut Problems,
ctx: &Context,
name: &str,
other: &Content,
) {
match other { match other {
FlexVar(_) => { FlexVar(_) => {
// If the other is flex, rigid wins! // If the other is flex, rigid wins!
merge(subs, ctx, RigidVar(name.into())); merge(subs, ctx, RigidVar(name.into()));
Ok(())
} }
RigidVar(_) | Structure(_) => { RigidVar(_) | Structure(_) => {
// Type mismatch! Rigid can only unify with flex, even if the // Type mismatch! Rigid can only unify with flex, even if the
// rigid names are the same. // rigid names are the same.
merge(subs, ctx, Error(Problem::GenericMismatch)); merge(subs, ctx, Error(Problem::GenericMismatch));
Ok(())
} }
Alias(_, _, _, _) => { Alias(_, _, _, _) => {
panic!("TODO unify_rigid Alias"); panic!("TODO unify_rigid Alias");
Ok(())
} }
Error(problem) => { Error(problem) => {
// Error propagates. // Error propagates.
merge(subs, ctx, Error(problem.clone())); merge(subs, ctx, Error(problem.clone()));
problems.push(problem.clone());
Err(problem.clone())
} }
} }
} }
@ -347,34 +335,31 @@ fn unify_rigid(subs: &mut Subs, ctx: &Context, name: &str, other: &Content) -> U
#[inline(always)] #[inline(always)]
fn unify_flex( fn unify_flex(
subs: &mut Subs, subs: &mut Subs,
problems: &mut Problems,
ctx: &Context, ctx: &Context,
opt_name: &Option<Box<str>>, opt_name: &Option<Box<str>>,
other: &Content, other: &Content,
) -> UnifyResult { ) {
match other { match other {
FlexVar(None) => { FlexVar(None) => {
// If both are flex, and only left has a name, keep the name around. // If both are flex, and only left has a name, keep the name around.
merge(subs, ctx, FlexVar(opt_name.clone())); merge(subs, ctx, FlexVar(opt_name.clone()));
Ok(())
} }
FlexVar(Some(_)) | RigidVar(_) | Structure(_) | Alias(_, _, _, _) => { FlexVar(Some(_)) | RigidVar(_) | Structure(_) | Alias(_, _, _, _) => {
// In all other cases, if left is flex, defer to right. // In all other cases, if left is flex, defer to right.
// (This includes using right's name if both are flex and named.) // (This includes using right's name if both are flex and named.)
merge(subs, ctx, other.clone()); merge(subs, ctx, other.clone());
Ok(())
} }
Error(problem) => { Error(problem) => {
merge(subs, ctx, Error(problem.clone())); merge(subs, ctx, Error(problem.clone()));
problems.push(problem.clone());
Err(problem.clone())
} }
} }
} }
fn gather_fields( fn gather_fields(
subs: &mut Subs, subs: &mut Subs,
problems: &mut Problems,
fields: ImMap<Lowercase, Variable>, fields: ImMap<Lowercase, Variable>,
var: Variable, var: Variable,
) -> RecordStructure { ) -> RecordStructure {
@ -382,12 +367,12 @@ fn gather_fields(
match subs.get(var).content { match subs.get(var).content {
Structure(Record(sub_fields, sub_ext)) => { Structure(Record(sub_fields, sub_ext)) => {
gather_fields(subs, fields.union(sub_fields), sub_ext) gather_fields(subs, problems, fields.union(sub_fields), sub_ext)
} }
Alias(_, _, _, var) => { Alias(_, _, _, var) => {
// TODO according to elm/compiler: "TODO may be dropping useful alias info here" // TODO according to elm/compiler: "TODO may be dropping useful alias info here"
gather_fields(subs, fields, var) gather_fields(subs, problems, fields, var)
} }
_ => RecordStructure { fields, ext: var }, _ => RecordStructure { fields, ext: var },

View file

@ -25,7 +25,8 @@ mod test_gen {
($src:expr, $expected:expr, $ty:ty) => { ($src:expr, $expected:expr, $ty:ty) => {
let (expr, _output, _problems, var_store, variable, constraint) = can_expr($src); let (expr, _output, _problems, var_store, variable, constraint) = can_expr($src);
let mut subs = Subs::new(var_store.into()); let mut subs = Subs::new(var_store.into());
let content = infer_expr(&mut subs, &constraint, variable); let mut unify_problems = Vec::new();
let content = infer_expr(&mut subs, &mut unify_problems, &constraint, variable);
let context = Context::create(); let context = Context::create();
let builder = context.create_builder(); let builder = context.create_builder();

View file

@ -20,7 +20,8 @@ mod test_infer {
fn infer_eq(src: &str, expected: &str) { fn infer_eq(src: &str, expected: &str) {
let (_, _output, _, var_store, variable, constraint) = can_expr(src); let (_, _output, _, var_store, variable, constraint) = can_expr(src);
let mut subs = Subs::new(var_store.into()); let mut subs = Subs::new(var_store.into());
let content = infer_expr(&mut subs, &constraint, variable); let mut unify_problems = Vec::new();
let content = infer_expr(&mut subs, &mut unify_problems, &constraint, variable);
name_all_type_vars(variable, &mut subs); name_all_type_vars(variable, &mut subs);

View file

@ -154,7 +154,8 @@ mod test_load {
assert_eq!(module.name, Some("WithBuiltins".into())); assert_eq!(module.name, Some("WithBuiltins".into()));
solve_loaded(&module, &mut subs, deps); let mut unify_problems = Vec::new();
solve_loaded(&module, &mut unify_problems, &mut subs, deps);
let expected_types = hashmap! { let expected_types = hashmap! {
"WithBuiltins.floatTest" => "Float", "WithBuiltins.floatTest" => "Float",

View file

@ -33,8 +33,9 @@ mod test_infer_uniq {
let mut subs1 = Subs::new(var_store1.into()); let mut subs1 = Subs::new(var_store1.into());
let mut subs2 = Subs::new(var_store2.into()); let mut subs2 = Subs::new(var_store2.into());
let content1 = infer_expr(&mut subs1, &constraint1, variable1); let mut unify_problems = Vec::new();
let content2 = infer_expr(&mut subs2, &constraint2, variable2); let content1 = infer_expr(&mut subs1, &mut unify_problems, &constraint1, variable1);
let content2 = infer_expr(&mut subs2, &mut unify_problems, &constraint2, variable2);
name_all_type_vars(variable1, &mut subs1); name_all_type_vars(variable1, &mut subs1);
name_all_type_vars(variable2, &mut subs2); name_all_type_vars(variable2, &mut subs2);