mirror of
https://github.com/github/codeql.git
synced 2026-04-25 16:55:19 +02:00
Swift: handle isolated types
This commit is contained in:
committed by
Paolo Tranquilli
parent
dfbc248e78
commit
6c954eae3c
@@ -195,6 +195,9 @@ SwiftMangledName SwiftMangler::visitAnyFunctionType(const swift::AnyFunctionType
|
||||
if (param.isShared()) {
|
||||
ret << "_shared";
|
||||
}
|
||||
if (param.isIsolated()) {
|
||||
ret << "_isolated";
|
||||
}
|
||||
if (param.isVariadic()) {
|
||||
ret << "...";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user