Skip to content

Commit 6c954ea

Browse files
AlexDenisovredsun82
authored andcommitted
Swift: handle isolated types
1 parent dfbc248 commit 6c954ea

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

swift/extractor/mangler/SwiftMangler.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -195,6 +195,9 @@ SwiftMangledName SwiftMangler::visitAnyFunctionType(const swift::AnyFunctionType
195195
if (param.isShared()) {
196196
ret << "_shared";
197197
}
198+
if (param.isIsolated()) {
199+
ret << "_isolated";
200+
}
198201
if (param.isVariadic()) {
199202
ret << "...";
200203
}

0 commit comments

Comments
 (0)