Skip to content

Commit 0b65641

Browse files
committed
[CodeCompletion] Parse multiple catch clauses if the do body contains the code completion token
rdar://125303959
1 parent 2ef1aa5 commit 0b65641

File tree

2 files changed

+22
-3
lines changed

2 files changed

+22
-3
lines changed

lib/Parse/ParseStmt.cpp

+7-3
Original file line numberDiff line numberDiff line change
@@ -2202,16 +2202,20 @@ ParserResult<Stmt> Parser::parseStmtDo(LabeledStmtInfo labelInfo,
22022202
if (Tok.is(tok::kw_catch)) {
22032203
// Parse 'catch' clauses
22042204
SmallVector<CaseStmt *, 4> allClauses;
2205+
ParserStatus catchClausesStatus;
22052206
do {
22062207
ParserResult<CaseStmt> clause = parseStmtCatch();
2207-
status |= clause;
2208-
if (status.hasCodeCompletion() && clause.isNull())
2208+
catchClausesStatus |= clause;
2209+
if (catchClausesStatus.hasCodeCompletion() && clause.isNull()) {
2210+
status |= catchClausesStatus;
22092211
return makeParserResult<Stmt>(status, nullptr);
2212+
}
22102213

22112214
// parseStmtCatch promises to return non-null unless we are
22122215
// completing inside the catch's pattern.
22132216
allClauses.push_back(clause.get());
2214-
} while (Tok.is(tok::kw_catch) && !status.hasCodeCompletion());
2217+
} while (Tok.is(tok::kw_catch) && !catchClausesStatus.hasCodeCompletion());
2218+
status |= catchClausesStatus;
22152219

22162220
// Recover from all of the clauses failing to parse by returning a
22172221
// normal do-statement.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// RUN: %batch-code-completion
2+
3+
func takeClosure(_ body: () -> Void) {}
4+
5+
func test() {
6+
let myVar = 1
7+
takeClosure {
8+
do {
9+
#^COMPLETE^#
10+
// COMPLETE: Decl[LocalVar]/Local: myVar[#Int#];
11+
} catch let error as Int {
12+
} catch let error {
13+
}
14+
}
15+
}

0 commit comments

Comments
 (0)