[Expr/AST] Add unresolvedApply component to handle method arguments.

This commit is contained in:
Amritpan Kaur
2024-09-04 18:17:55 -07:00
parent 0af27a6354
commit 0c614e09d1
8 changed files with 81 additions and 14 deletions

View File

@@ -485,6 +485,7 @@ ASTWalker::PreWalkResult<Expr *> SemaAnnotator::walkToExprPre(Expr *E) {
case KeyPathExpr::Component::Kind::Invalid:
case KeyPathExpr::Component::Kind::UnresolvedMember:
case KeyPathExpr::Component::Kind::UnresolvedSubscript:
case KeyPathExpr::Component::Kind::UnresolvedApply:
case KeyPathExpr::Component::Kind::OptionalChain:
case KeyPathExpr::Component::Kind::OptionalWrap:
case KeyPathExpr::Component::Kind::OptionalForce: