File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -58,10 +58,10 @@ void StmtVisitor::visitReturnStmt(swift::ReturnStmt* stmt) {
5858void StmtVisitor::visitForEachStmt (swift::ForEachStmt* stmt) {
5959 auto label = dispatcher_.assignNewLabel (stmt);
6060 assert (stmt->getBody () && " ForEachStmt has getBody()" );
61- assert (stmt->getSequence () && " ForEachStmt has getSequence ()" );
61+ assert (stmt->getParsedSequence () && " ForEachStmt has getParsedSequence ()" );
6262 assert (stmt->getPattern () && " ForEachStmt has getPattern()" );
6363 auto bodyLabel = dispatcher_.fetchLabel (stmt->getBody ());
64- auto sequenceLabel = dispatcher_.fetchLabel (stmt->getSequence ());
64+ auto sequenceLabel = dispatcher_.fetchLabel (stmt->getParsedSequence ());
6565 auto patternLabel = dispatcher_.fetchLabel (stmt->getPattern ());
6666 emitLabeledStmt (stmt, label);
6767 dispatcher_.emit (ForEachStmtsTrap{label, patternLabel, sequenceLabel, bodyLabel});
You can’t perform that action at this time.
0 commit comments