mirror of
https://github.com/luau-lang/luau.git
synced 2025-04-03 02:10:53 +01:00
Update ConstraintSolver.cpp
This commit is contained in:
parent
b765d7bafd
commit
4bdf97e4c9
1 changed files with 7 additions and 2 deletions
|
@ -1422,8 +1422,13 @@ bool ConstraintSolver::tryDispatch(const PrimitiveTypeConstraint& c, NotNull<con
|
|||
// This is probably the only thing that makes this not insane to do.
|
||||
if (auto refCount = unresolvedConstraints.find(c.freeType); refCount && *refCount > 1)
|
||||
{
|
||||
block(c.freeType, constraint);
|
||||
return false;
|
||||
// canMutate here is used to check if the freeType is owned by the same constraint
|
||||
if (canMutate(c.freeType, constraint) == false)
|
||||
{
|
||||
// if it isn't owned by the same constraint, then we can block it
|
||||
block(c.freeType, constraint);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
TypeId bindTo = c.primitiveType;
|
||||
|
|
Loading…
Add table
Reference in a new issue