mirror of
https://github.com/apple/swift.git
synced 2025-12-21 12:14:44 +01:00
ASTDemangler: Add support for lowered function types
This commit is contained in:
@@ -1167,6 +1167,16 @@ public:
|
||||
result);
|
||||
}
|
||||
|
||||
BuiltType createImplFunctionType(
|
||||
Demangle::ImplParameterConvention calleeConvention,
|
||||
ArrayRef<Demangle::ImplFunctionParam<BuiltType>> params,
|
||||
ArrayRef<Demangle::ImplFunctionResult<BuiltType>> results,
|
||||
Optional<Demangle::ImplFunctionResult<BuiltType>> errorResult,
|
||||
ImplFunctionTypeFlags flags) {
|
||||
// We can't realize the metadata for a SILFunctionType.
|
||||
return BuiltType();
|
||||
}
|
||||
|
||||
BuiltType createTupleType(ArrayRef<BuiltType> elements,
|
||||
std::string labels,
|
||||
bool variadic) const {
|
||||
|
||||
Reference in New Issue
Block a user