We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3527897 commit 7e67338Copy full SHA for 7e67338
swift/extractor/infra/SwiftDispatcher.h
@@ -265,7 +265,7 @@ class SwiftDispatcher {
265
bool fetchLabelFromUnionCase(const llvm::PointerUnion<Ts...> u, TrapLabel<Tag>& output) {
266
// we rely on the fact that when we extract `ASTNode` instances (which only happens
267
// on `BraceStmt` elements), we cannot encounter a standalone `TypeRepr` there, so we skip
268
- // this case, which would be problematic as we would not be able to provide the corresponding
+ // this case; extracting `TypeRepr`s here would be problematic as we would not be able to provide the corresponding
269
// type
270
if constexpr (!std::is_same_v<T, swift::TypeRepr*>) {
271
if (auto e = u.template dyn_cast<T>()) {
0 commit comments