Handling ExplicityCoercion in simplifyLocator

This commit is contained in:
Luciano Almeida
2019-10-24 00:27:53 -03:00
parent a92e62f51f
commit 3dc82a6271
2 changed files with 6 additions and 7 deletions

View File

@@ -2997,6 +2997,11 @@ void constraints::simplifyLocator(Expr *&anchor,
path = path.slice(1);
continue;
}
case ConstraintLocator::ExplicitTypeCoercion: {
path = path.slice(1);
continue;
}
default:
// FIXME: Lots of other cases to handle.